[Arcturus] Camera Selection

Results 1 to 1 of 1
  1. #1
    Alpha Member Glee is offline
    MemberRank
    Jun 2009 Join Date
    Niagara Falls,Location
    2,225Posts

    [Arcturus] Camera Selection

    Hey,

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

    PHP Code:
    $getCamInfo mysql_query("SELECT * FROM `camera_web` WHERE url = '".$_SESSION[user][url]."'");
                                    while (
    $camInfomysql_fetch_assoc($getCamInfo)) 
    but it's leaving my column blank

    here is the full code.

    PHP Code:
    <?php 
                                    $getCamInfo 
    mysql_query("SELECT * FROM `camera_web` WHERE url = '".$_SESSION[user][url]."'");
                                    while (
    $camInfomysql_fetch_assoc($getCamInfo))
                                         {
                                    echo 

                                    
                                    <img src="' 
    .$camInfo['url'] . '">
                                    
                                    '
    ;
                                         }
                                    
    ?>




Advertisement