[Arcturus] Camera Selection

Status
Not open for further replies.
Custom Title Activated
Loyal 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.