Here is an excerpt from my original post in this topic:
guestbook.php
<?php
require "database_connection.php";
$myconnection = new DatabaseConnection('localhost','tearsfal_admin','*********','tearsfal_forums');
$myconnection->connect();
$result =...
First,
I never figured out what I did wrong the other day with my simple web application: the simple guest book. I removed the form where users add guest book entries. I'm using myPhpAdmin to add new rows to the table for testing purposes. Once I figure out what's going on then I will...
There is data in the fields. It's just simply not returning the first row when using the SELECT statement. Maybe there are invalid characters in my program from where I used notepad2 ... maybe I need to retype it or something?
I made a premature guestbook for my site using PHP and MySQL. For some reason when I use the SELECT statement ... my first guestbook entry doesn't show, but all subsequent entries show.
My site is:
http://tearsfall.pcriot.com
My guestbook is:
http://tearsfall.pcriot.com/guestbook.php
I'm...
I've created a registration script in PHP with MySQL. I'm wondering ... is there any possibility that I can get the mail() function enabled on my account so that I can have people to validate their accounts? If not, how can I resolve this to where I can get people to validate their accounts...
I'm using PHP to insert data into MySQL and I'm running into bit of a problem. My script executes just fine, but when it comes to my query ... the query doesn't insert information into my database:
Here's my site: http://tearsfall.pcriot.com
here's my database table (within my forums...