Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Arcturus] Camera Selection

Status
Not open for further replies.
Custom Title Activated
Member
Joined
Jun 27, 2009
Messages
1,571
Reaction score
170
Hey,

So I'm trying to update some feature to my CMS!

PHP:
$getCamInfo = mysql_query("SELECT * FROM `camera_web` WHERE url = '".$_SESSION[user][url]."'");
                                while ($camInfo= mysql_fetch_assoc($getCamInfo))

but it's leaving my column blank

here is the full code.

PHP:
<?php 
                                $getCamInfo = mysql_query("SELECT * FROM `camera_web` WHERE url = '".$_SESSION[user][url]."'");
                                while ($camInfo= mysql_fetch_assoc($getCamInfo))
                                     {
                                echo ' 
								
								<img src="' .$camInfo['url'] . '">
								
								';
									 }
								?>
 
Status
Not open for further replies.
Back
Top