-
Pedantic Curmudgeon
 Originally Posted by bradgrafelman
Step 1. Stop creating numerous threads that all center around the same issue. It's annoying.
Cross-posted threads merged.
-
Ok, now I am really lost...
Here is my code so far...
if( $db_select_users = mysql_query("SELECT Unique, Surname, Name, Email, Birth FROM people
" ) )
{
$date_today = date('Y-m-d');
echo 'Date: '.$date_today.'<br />--------------------------------<br /><br />';
$user_info = mysql_fetch_assoc($db_select_users);
while($user_info = mysql_fetch_assoc($db_select_users)) {
$unique = $user_info['Unique'];
$name = $user_info['Name'];
$surname = $user_info['Surname'];
$birth = $user_info['Birth'];
$email = $user_info['Email'];
echo
'<strong> Unique number: </strong>'.$unique.' '.
'<strong>Name: </strong>'.$name.' '.
'<strong>Surname: </strong>'.$surname.' '.
'<strong>BD: </strong>'.$birth.' '.
'<strong>Email: </strong>'.$email.' ';
Now I want to be able to click on each user and have unique page for each or something where I can send a unique email for each.
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
|
Bookmarks