Go Back   CodingForums.com > :: Server side development > PHP > Post a PHP snippet

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 07-25-2012, 12:32 PM   PM User | #1
connormcwood
New Coder

 
Join Date: Sep 2011
Location: Blackpool
Posts: 31
Thanks: 6
Thanked 1 Time in 1 Post
connormcwood has a little shameless behaviour in the past
Passing Variables In a Hyperlink or Alt or Title ect.

I've seen a few threads pop up in the support area of the php Section about
parcsing Variables In a Hyperlink, Alt, or Title. I am going to give you all a working code snippet which is used within my game I am Currently Making.

PHP Code:
$table "SELECT * FROM users";
$test mysql_query($table); 

echo 
"<table><tr><th>Username</th>";
echo 
"<th> </th>";
echo 
"<th>Created</th>";
echo 
"<th>Infastructure</th>";
echo 
"<th>Statename</th>";
echo 
"<th>Money</th></tr>";
while (
$row mysql_fetch_array($test)) { 
 echo 
'<tr><td><a href="profile.php?user='
    
$row['username'] . '">'
    
$row['username'] . '</a></td><td>
    <a href="sendmessage.php?user='
    
$row['username'] . '"><img src="images/messageicon.png" alt='
    
$row['username'] . '</img></a></td><td>'
    
    
$row['dayregistered'] . '</a></td><td>'
    
$row['infrastructure'] .  '</td><td> '
    
$row['statename'] .  '</td><td> $'
    
$row['money'] . '</td></tr>';
    
 }
echo 
"</table>"
__________________
Google was late to search. Facebook was late to social networking. Apple was late to the MP3 player. It's never too late. Just do it better
My website: http://www.connormcwood.com/forum/
connormcwood is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 04:27 PM.


Advertisement
Log in to turn off these ads.