I am having problems loading images from my database. I think it's something with the variable...i am new to PHP and have a project i need to finish by Tuesday. Your help is appreciated.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>SMRTCV</title>
<meta name="description" content="Demo page for FlowGallery jQuery plugin - image gallery based on cover flow effect." />
<meta name="author" content="Boris Searles">
<link rel="stylesheet" href="css/skin.css" type="text/css" media="screen" charset="utf-8" />
<script src="js/jquery-1.4.2.min.js" type="text/javascript"></script>
<script src="js/jquery.easing.1.3.js" type="text/javascript"></script>
<script src="js/jquery.flowgallery.min.js" type="text/javascript"></script>
<script type="text/javascript" charset="utf-8">
$(function() {
$('#gallery').flowGallery({
easing: 'easeOutCubic',
imagePadding: 6,
thumbWidth: 120
});
});
</script>
</head>
<body>
<body>
<div id = "wrapper">
<div id = "header"><a href-"http://www.mysphinx.net"><img src = "http://www.obinnaizeogu.com/mysphinx/images/SMRTCV_LOGOTYPE.gif" alt = "SMRTCV" width="107" height="18" border="0"/></a>
</div>
<div id = "menu">
<ul>
<li>Refine</li>
<li>Create a Spec</li>
<li>Mail</li>
<li>Casting Board</li>
</ul
</div>
<div>
<p class="name">Sign In</p>
<p class="name">Forgot Password?</p>
</div>
<div class="search">
<form id="searchform" action="http://www.mysphinx.net/" method="get">
<fieldset>
<div class="form">
<input id="s" class="field" type="text" name="s" value="">
<input id="searchsubmit" class="submit" type="submit" value="">
</div>
</fieldset>
</form>
</div>
<?php
$sql = "SELECT models_ID, profile_image, photo1, photo2, photo3\n"
. "FROM photos_models\n"
. "WHERE profile_image LIKE \'SigridAgren.jpg\' LIMIT 0, 30 ";
$img_src = $row['1'];
?>
<div id="content">
<ul class="gal" id="gallery">
<li><img src="http://www.obinnaizeogu.com/mysphinx/models/women/smart_gallery/lightbox/updated-images-04-26-11/<?=$img_src?>" alt="Sigrid Agren" title="Sigrid Agren" /></li>
</ul>
</div><!-- #content -->
</div><!-- #wrapper -->
</body>
</html>