Jump to content

squiblo

Members
  • Posts

    483
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by squiblo

  1. also could i just take out "$error_msg" and echo the message? echo 'Your search must be at least 3 characters long.';
  2. ok now, the page does not have any errors, its as though the page doesnt know the php script is there and is not showing any results or the image on the page if the search is less that 3 or even more than 3. <?php session_start(); if(!isset($_SESSION['myusername'])){ header("location:notloggedin.php"); exit; } ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta name="googlebot" content="noindex"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Squiblo search results!</title> <style type="text/css"> div#container { width: 900px; position: relative; margin-top: 0px; margin-left: auto; margin-right: auto; text-align: left; } body { text-align: center; margin: 0; } </style> <style type="text/css"> form { position:absolute; left:70px; top:210px; z-index:14; } </style> </head> <body bgcolor="#E6E6E6" text="#FFFFFF"> <div id="container"> <div id="wb_Shape1" style="position:absolute;left:55px;top:41px;width:792px;height:125px;z-index:2" align="center"> <img src="/Images/header_img.jpg" id="Shape1" align="top" alt="" title="" border="0" width="792" height="125"></div> <div id="wb_Text1" style="position:absolute;left:60px;top:85px;width:325px;height:72px;z-index:3" align="left"> <font style="font-size:70px" color="#FFFFFF" face="impact"><a href="/index.php" style="text-decoration:none"> <font color="#FFFFFF">SQUIBLO</a></font></font></div> <div id="menubar" style="position:absolute;left:54px;top:168px;width:793px;height:30px;z-index:13" align="center"> <?php if(isset($_SESSION['myusername'])) echo '<img src="/Images/header_img.jpg" id="menubar" align="top" alt="" title="" border="0" width="793" height="30">'; ?> </div> <?php if($_SESSION['myusername']){ ?> <div id="wb_Text1" style="position:absolute;left:684px;top:55px;width:151px;height:14px;z-index:7" align="right"> <font style="font-size:13px" color="#FFFFFF" face="Arial">You are logged in as:</font><br> <font style="font-size:15px" color="#FF0000" face="Arial"> <?php echo ucwords(strtolower($_SESSION['myusername'])); ?> </font></div> <div id="logout" style="position:absolute;left:775px;top:130px;width:64px;height:23px;z-index:12" align="center"><a href="/logout.php"> <?php echo '<img src="/Images/logout.png" id="logout" align="top" alt="logout" title="" border="0" width="64" height="23">'; ?> </a></div> <div id="apps" style="position:absolute;left:754px;top:169px;z-index:14" align="center"> <?php include 'accmenu.php'; ?> </div> <div id="wb_Text3" style="position:absolute;left:60px;top:173px;width:100px;height:30px;z-index:14" align="left"> <font style="font-size:17px" color="#FFFFFF" face="Arial"><a href="/index.php" style="text-decoration:none"><font color="#FFFFFF">Profile</a></font></font></div> <div id="wb_Text4" style="position:absolute;left:123px;top:173px;width:100px;height:30px;z-index:14" align="left"> <font style="font-size:17px" color="#FFFFFF" face="Arial"><a href="http://google.com" style="text-decoration:none"><font color="#FFFFFF">Friends</a></font></font></div> <div id="wb_Text5" style="position:absolute;left:195px;top:173px;width:100px;height:30px;z-index:14" align="left"> <font style="font-size:17px" color="#FFFFFF" face="Arial"><a href="http://google.com" style="text-decoration:none"><font color="#FFFFFF">Photos</a></font></font></div> <div id="wb_Text6" style="position:absolute;left:262px;top:173px;width:100px;height:30px;z-index:14" align="left"> <font style="font-size:17px" color="#FFFFFF" face="Arial"><a href="http://google.com" style="text-decoration:none"><font color="#FFFFFF">Mail</a></font></font></div> <div id="wb_Text8" style="position:absolute;left:680px;top:173px;width:100px;height:30px;z-index:14" align="left"> <font style="font-size:17px" color="#FFFFFF" face="Arial"><a href="http://google.com" style="text-decoration:none"><font color="#FFFFFF">Settings</a></font></font></div> <?php } else { ?> <form name="form1" method="post" action="checklogin.php"> <input type="text" id="myusername" style="position:absolute;left:651px;top:59px;width:174px;font-family:Arial;font-size:13px;z-index:4" size="29" name="myusername" value="" title="username"> <input type="password" id="mypassword" style="position:absolute;left:651px;top:86px;width:174px;font-family:Arial;font-size:13px;z-index:5" size="29" name="mypassword" value="" tabindex="password" title="password"> <input type="checkbox" id="Checkbox1" name="Checkbox1" value="on" style="position:absolute;left:648px;top:113px;font-family:Arial;font-size:13px;z-index:6"> <input type="submit" id="Button1" name="Login" value="Login" style="position:absolute;left:778px;top:117px;width:50px;height:43px;font-family:Arial;font-size:13px;z-index:8" title="Login"> </form> <div id="wb_Text7" style="position:absolute;left:584px;top:63px;width:47px;height:16px;z-index:22" align="left"> <font style="font-size:13px" color="#FFFFFF" face="Arial">Username:</font></div> <div id="wb_Text8" style="position:absolute;left:586px;top:88px;width:65px;height:16px;z-index:23" align="left"> <font style="font-size:13px" color="#FFFFFF" face="Arial">Password:</font></div> <div id="wb_Text2" style="position:absolute;left:669px;top:113px;width:111px;height:14px;z-index:7" align="left"> <font style="font-size:11px" color="#FFFFFF" face="Arial">Remember Me</font></div> <div id="wb_Text3" style="position:absolute;left:651px;top:131px;width:122px;height:14px;z-index:9" align="left"> <font style="font-size:11px" color="#FFFFFF" face="Arial">Forgot your password?</font></div> <?php } ?> <form action='http://www.squiblo.com/results.php?submit=Search' method='GET'> <font face='sans-serif' size='6'> <input type='text' size='20' name='search'> <select name="Gender" size="1" id="Combobox1"> <option selected>All</option> <option>People</option> <option>Groups</option> <option>Photos</option> <option>Videos</option> <option>Games</option> </select> <font face='Arial' size='3'>and</font> <select name="Gender" size="1" id="Combobox1"> <option selected>Nothing</option> <option>People</option> <option>Groups</option> <option>Photos</option> <option>Videos</option> <option>Games</option> </select> <input type='submit' name='submit' value='Search'> <input type="hidden" name="submit" value="Search"> </font> </form> <div id="results 1st ad" style="position:absolute;top:350px;left:490px;z-index:14"> <script type="text/javascript"><!-- google_ad_client = "pub-1084151793964040"; /* 336x280 1st results */ google_ad_slot = "7001820362"; google_ad_width = 336; google_ad_height = 280; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </div> <div id="results" style="position:absolute;left:70px;top:260px;z-index:16"> <font face="arial"> <?php if (!isset($_GET['button'])) { header("location:advsearch.php"); exit; } $error_msg = ''; $search = $_GET['search']; if(strlen($search) < 3) { $error_msg = "Your search must be at least 3 characters long."; $div_height = 'height:500px;'; } else { $div_height = 'height:1200px'; } ?> <div id="wb_Shape2" style="position:absolute;top:200px;left:54px;width:793px;z-index:10;<?php echo $div_height; ?>" align="center"> <?php echo $error_msg; ?> <img src="/Images/body_img.jpg" id="Shape2" align="top" alt="" title="" border="0" width="793"> </div> <?php //connect to our database mysql_connect("localhost","***","***"); mysql_select_db("***"); //explode our search term $search_exploded = explode(" ",$search); foreach($search_exploded as $search_each) { //construct query $x++; if ($x==1) $construct .= "username LIKE '%$search_each%'"; else $construct .= " OR username LIKE '%$search_each%'"; } //echo out construct $construct = "SELECT * FROM members WHERE $construct"; $run = mysql_query($construct); $foundnum = mysql_num_rows($run); if ($foundnum==0) echo "You searched for <b>$search</b>. No results found."; else { echo "You searched for <b>$search</b><br>$foundnum result(s) found!<p><hr size='1' width='387'color='#E6E6E6'>"; while ($runrows = mysql_fetch_assoc($run)) { //get data $state = ucwords($runrows['state']); $url = $runrows['url']; $username = ucwords($runrows['username']); $imagelocation = $runrows['imagelocation']; if ($imagelocation == "") { $imagelocation = "./profileimages/noprofilepic.jpg"; } echo " <img src ='$imagelocation' width='100' height='105' border='0' align='left' style='padding-right:10px'><br> <b>$username</b><br> $state<br> <a href='$url'>View Profile</a><br><br><br> <hr size='1' width='387' align='left' color='#E6E6E6'> "; } } ?> </font> </div> </div> </body> </html>
  3. sorry for this guys i think ive done everything you have said but something still isn't right <?php session_start(); if(!isset($_SESSION['myusername'])){ header("location:notloggedin.php"); exit; } ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta name="googlebot" content="noindex"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Squiblo search results!</title> <style type="text/css"> div#container { width: 900px; position: relative; margin-top: 0px; margin-left: auto; margin-right: auto; text-align: left; } body { text-align: center; margin: 0; } </style> <style type="text/css"> form { position:absolute; left:70px; top:210px; z-index:14; } </style> </head> <body bgcolor="#E6E6E6" text="#FFFFFF"> <div id="container"> <div id="wb_Shape1" style="position:absolute;left:55px;top:41px;width:792px;height:125px;z-index:2" align="center"> <img src="/Images/header_img.jpg" id="Shape1" align="top" alt="" title="" border="0" width="792" height="125"></div> <div id="wb_Text1" style="position:absolute;left:60px;top:85px;width:325px;height:72px;z-index:3" align="left"> <font style="font-size:70px" color="#FFFFFF" face="impact"><a href="/index.php" style="text-decoration:none"> <font color="#FFFFFF">SQUIBLO</a></font></font></div> <div id="menubar" style="position:absolute;left:54px;top:168px;width:793px;height:30px;z-index:13" align="center"> <?php if(isset($_SESSION['myusername'])) echo '<img src="/Images/header_img.jpg" id="menubar" align="top" alt="" title="" border="0" width="793" height="30">'; ?> </div> <?php if($_SESSION['myusername']){ ?> <div id="wb_Text1" style="position:absolute;left:684px;top:55px;width:151px;height:14px;z-index:7" align="right"> <font style="font-size:13px" color="#FFFFFF" face="Arial">You are logged in as:</font><br> <font style="font-size:15px" color="#FF0000" face="Arial"> <?php echo ucwords(strtolower($_SESSION['myusername'])); ?> </font></div> <div id="logout" style="position:absolute;left:775px;top:130px;width:64px;height:23px;z-index:12" align="center"><a href="/logout.php"> <?php echo '<img src="/Images/logout.png" id="logout" align="top" alt="logout" title="" border="0" width="64" height="23">'; ?> </a></div> <div id="apps" style="position:absolute;left:754px;top:169px;z-index:14" align="center"> <?php include 'accmenu.php'; ?> </div> <div id="wb_Text3" style="position:absolute;left:60px;top:173px;width:100px;height:30px;z-index:14" align="left"> <font style="font-size:17px" color="#FFFFFF" face="Arial"><a href="/index.php" style="text-decoration:none"><font color="#FFFFFF">Profile</a></font></font></div> <div id="wb_Text4" style="position:absolute;left:123px;top:173px;width:100px;height:30px;z-index:14" align="left"> <font style="font-size:17px" color="#FFFFFF" face="Arial"><a href="http://google.com" style="text-decoration:none"><font color="#FFFFFF">Friends</a></font></font></div> <div id="wb_Text5" style="position:absolute;left:195px;top:173px;width:100px;height:30px;z-index:14" align="left"> <font style="font-size:17px" color="#FFFFFF" face="Arial"><a href="http://google.com" style="text-decoration:none"><font color="#FFFFFF">Photos</a></font></font></div> <div id="wb_Text6" style="position:absolute;left:262px;top:173px;width:100px;height:30px;z-index:14" align="left"> <font style="font-size:17px" color="#FFFFFF" face="Arial"><a href="http://google.com" style="text-decoration:none"><font color="#FFFFFF">Mail</a></font></font></div> <div id="wb_Text8" style="position:absolute;left:680px;top:173px;width:100px;height:30px;z-index:14" align="left"> <font style="font-size:17px" color="#FFFFFF" face="Arial"><a href="http://google.com" style="text-decoration:none"><font color="#FFFFFF">Settings</a></font></font></div> <?php } else { ?> <form name="form1" method="post" action="checklogin.php"> <input type="text" id="myusername" style="position:absolute;left:651px;top:59px;width:174px;font-family:Arial;font-size:13px;z-index:4" size="29" name="myusername" value="" title="username"> <input type="password" id="mypassword" style="position:absolute;left:651px;top:86px;width:174px;font-family:Arial;font-size:13px;z-index:5" size="29" name="mypassword" value="" tabindex="password" title="password"> <input type="checkbox" id="Checkbox1" name="Checkbox1" value="on" style="position:absolute;left:648px;top:113px;font-family:Arial;font-size:13px;z-index:6"> <input type="submit" id="Button1" name="Login" value="Login" style="position:absolute;left:778px;top:117px;width:50px;height:43px;font-family:Arial;font-size:13px;z-index:8" title="Login"> </form> <div id="wb_Text7" style="position:absolute;left:584px;top:63px;width:47px;height:16px;z-index:22" align="left"> <font style="font-size:13px" color="#FFFFFF" face="Arial">Username:</font></div> <div id="wb_Text8" style="position:absolute;left:586px;top:88px;width:65px;height:16px;z-index:23" align="left"> <font style="font-size:13px" color="#FFFFFF" face="Arial">Password:</font></div> <div id="wb_Text2" style="position:absolute;left:669px;top:113px;width:111px;height:14px;z-index:7" align="left"> <font style="font-size:11px" color="#FFFFFF" face="Arial">Remember Me</font></div> <div id="wb_Text3" style="position:absolute;left:651px;top:131px;width:122px;height:14px;z-index:9" align="left"> <font style="font-size:11px" color="#FFFFFF" face="Arial">Forgot your password?</font></div> <?php } ?> <form action='http://www.squiblo.com/results.php?submit=Search' method='GET'> <font face='sans-serif' size='6'> <input type='text' size='20' name='search'> <select name="Gender" size="1" id="Combobox1"> <option selected>All</option> <option>People</option> <option>Groups</option> <option>Photos</option> <option>Videos</option> <option>Games</option> </select> <font face='Arial' size='3'>and</font> <select name="Gender" size="1" id="Combobox1"> <option selected>Nothing</option> <option>People</option> <option>Groups</option> <option>Photos</option> <option>Videos</option> <option>Games</option> </select> <input type='submit' name='submit' value='Search'> <input type="hidden" name="submit" value="Search"> </font> </form> <div id="results 1st ad" style="position:absolute;top:350px;left:490px;z-index:14"> <script type="text/javascript"><!-- google_ad_client = "pub-1084151793964040"; /* 336x280 1st results */ google_ad_slot = "7001820362"; google_ad_width = 336; google_ad_height = 280; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </div> <div id="results" style="position:absolute;left:70px;top:260px;z-index:16"> <font face="arial"> <?php if (!isset(_GET['button']) { header("location:advsearch.php"); exit; } $error_msg = ''; $search = $_GET['search']; if(strlen($search) < 3) { $error_msg = "Your search must be at least 3 characters long."; $div_height = 'height:500px;'; } else { $div_height = 'height:1200px'; } ?> <div id="wb_Shape2" style="position:absolute;top:200px;left:54px;width:793px;z-index:10;<?php echo $div_height: ?>" align="center"> <?php echo $error_msg; ?> <img src="/Images/body_img.jpg" id="Shape2" align="top" alt="" title="" border="0" width="793"> </div> <?php //connect to our database mysql_connect("localhost","***","***"); mysql_select_db("***"); //explode our search term $search_exploded = explode(" ",$search); foreach($search_exploded as $search_each) { //construct query $x++; if ($x==1) $construct .= "username LIKE '%$search_each%'"; else $construct .= " OR username LIKE '%$search_each%'"; } //echo out construct $construct = "SELECT * FROM members WHERE $construct"; $run = mysql_query($construct); $foundnum = mysql_num_rows($run); if ($foundnum==0) echo "You searched for <b>$search</b>. No results found."; else { echo "You searched for <b>$search</b><br>$foundnum result(s) found!<p><hr size='1' width='387'color='#E6E6E6'>"; while ($runrows = mysql_fetch_assoc($run)) { //get data $state = ucwords($runrows['state']); $url = $runrows['url']; $username = ucwords($runrows['username']); $imagelocation = $runrows['imagelocation']; if ($imagelocation == "") { $imagelocation = "./profileimages/noprofilepic.jpg"; } echo " <img src ='$imagelocation' width='100' height='105' border='0' align='left' style='padding-right:10px'><br> <b>$username</b><br> $state<br> <a href='$url'>View Profile</a><br><br><br> <hr size='1' width='387' align='left' color='#E6E6E6'> "; } } ?> </font> </div> </div> </body> </html>
  4. im sure that works but i think ive entered it in to the rest of the code incorrectly <?php if (!isset(_GET['button']) { header("location:advsearch.php"); exit; } $error_msg = ''; $search = $_GET['search']; if(strlen($search) < 3) { $error_msg = "Your search must be at least 3 characters long."; $div_height = 'height:500px;'; } else { $div_height = 'height:1200px'; } <div id="wb_Shape2" style="position:absolute;top:200px;left:54px;width:793px;z-index:10;<?php echo $div_height: ?>" align="center"> <?php echo $error_msg; ?> <img src="/Images/body_img.jpg" id="Shape2" align="top" alt="" title="" border="0" width="793"> </div> //connect to our database mysql_connect("localhost","***","***"); mysql_select_db("***"); //explode our search term $search_exploded = explode(" ",$search); foreach($search_exploded as $search_each) { //construct query $x++; if ($x==1) $construct .= "username LIKE '%$search_each%'"; else $construct .= " OR username LIKE '%$search_each%'"; } //echo out construct $construct = "SELECT * FROM members WHERE $construct"; $run = mysql_query($construct); $foundnum = mysql_num_rows($run); if ($foundnum==0) echo "You searched for <b>$search</b>. No results found."; else { echo "You searched for <b>$search</b><br>$foundnum result(s) found!<p><hr size='1' width='387'color='#E6E6E6'>"; while ($runrows = mysql_fetch_assoc($run)) { //get data $state = ucwords($runrows['state']); $url = $runrows['url']; $username = ucwords($runrows['username']); $imagelocation = $runrows['imagelocation']; if ($imagelocation == "") { $imagelocation = "./profileimages/noprofilepic.jpg"; } echo " <img src ='$imagelocation' width='100' height='105' border='0' align='left' style='padding-right:10px'><br> <b>$username</b><br> $state<br> <a href='$url'>View Profile</a><br><br><br> <hr size='1' width='387' align='left' color='#E6E6E6'> "; } } } } ?>
  5. new code, still not working <?php echo '<div id="wb_Shape2" style="position:absolute;top:200px;left:54px;width:793px;z-index:10;'; //get data $button = $_GET['submit']; $search = $_GET['search']; if (!$button) header("location:advsearch.php"); else { if (strlen($search)<3) echo "Your search must be at least 3 characters long."; { echo 'height:500px;'; } else { echo 'height:1200px'; } } echo '" align="center"> <img src="/Images/body_img.jpg" id="Shape2" align="top" alt="" title="" border="0" width="793"></div>';
  6. i was following the idea of this working code <?php echo '<div id="wb_Shape2" style="position:absolute;left:54px;width:793px;height:412px;z-index:10;'; if(isset($_SESSION['myusername'])) { echo 'top:200px;'; } else { echo 'top:170px;'; } echo '" align="center"> <img src="/Images/body_img.jpg" id="Shape2" align="top" alt="" title="" border="0" width="793" height="412"></div>'; ?>
  7. i cannot find where im going wrong, or if im doing it the right way, the aim is for the image to be "height:500px" if the search was less the 3 characters long and "height:1200px" if the search was more than 3 characters long. <?php //get data $button = $_GET['submit']; $search = $_GET['search']; echo '<div id="wb_Shape2" style="position:absolute;top:200px;left:54px;width:793px;z-index:10;'; if (!$button) header("location:advsearch.php"); else { if (strlen($search)<3) echo "Your search must be at least 3 characters long."; { echo 'height:500px;'; } else { echo 'height:1200px'; } <img src="/Images/body_img.jpg" id="Shape2" align="top" alt="" title="" border="0" width="793"></div>'; ?>
  8. the ad code near the bottom of the page script is not showing, all that is showing is "your ad here" i tried an index of 99 just to make sure it wasnt hidden under anything, it was working earlier but strangely not any more, any suggestions? <html> <head> <meta name="googlebot" content="noindex"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Squiblo search results!</title> <style type="text/css"> div#container { width: 900px; position: relative; margin-top: 0px; margin-left: auto; margin-right: auto; text-align: left; } body { text-align: center; margin: 0; } </style> </head> <body bgcolor="#E6E6E6" text="#FFFFFF"> <div id="container"> <div id="wb_Shape1" style="position:absolute;left:55px;top:41px;width:792px;height:125px;z-index:2" align="center"> <img src="/Images/header_img.jpg" id="Shape1" align="top" alt="" title="" border="0" width="792" height="125"></div> <div id="wb_Text1" style="position:absolute;left:60px;top:85px;width:325px;height:72px;z-index:3" align="left"> <font style="font-size:70px" color="#FFFFFF" face="impact"><a href="/index.php" style="text-decoration:none"> <font color="#FFFFFF">SQUIBLO</a></font></font></div> <?php echo '<div id="wb_Shape2" style="position:absolute;left:54px;width:793px;height:1200px;z-index:10;'; if(isset($_SESSION['myusername'])) { echo 'top:200px;'; } else { echo 'top:170px;'; } echo '" align="center"> <img src="/Images/body_img.jpg" id="Shape2" align="top" alt="" title="" border="0" width="793" height="1200"></div>'; ?> <div id="menubar" style="position:absolute;left:54px;top:168px;width:793px;height:30px;z-index:13" align="center"> <?php if(isset($_SESSION['myusername'])) echo '<img src="/Images/header_img.jpg" id="menubar" align="top" alt="" title="" border="0" width="793" height="30">'; ?> </div> <div id="results" style="position:absolute;left:70px;top:260px;z-index:16"> <?php include 'search.php'; ?> </div> <?php if($_SESSION['myusername']){ ?> <div id="wb_Text1" style="position:absolute;left:684px;top:55px;width:151px;height:14px;z-index:7" align="right"> <font style="font-size:13px" color="#FFFFFF" face="Arial">You are logged in as:</font><br> <font style="font-size:15px" color="#FF0000" face="Arial"> <?php echo ucwords(strtolower($_SESSION['myusername'])); ?> </font></div> <div id="logout" style="position:absolute;left:775px;top:130px;width:64px;height:23px;z-index:12" align="center"><a href="/logout.php"> <?php echo '<img src="/Images/logout.png" id="logout" align="top" alt="logout" title="" border="0" width="64" height="23">'; ?> </a></div> <div id="apps" style="position:absolute;left:754px;top:169px;z-index:14" align="center"> <?php include 'accmenu.php'; ?> </div> <div id="wb_Text3" style="position:absolute;left:60px;top:173px;width:100px;height:30px;z-index:14" align="left"> <font style="font-size:17px" color="#FFFFFF" face="Arial"><a href="/index.php" style="text-decoration:none"><font color="#FFFFFF">Profile</a></font></font></div> <div id="wb_Text4" style="position:absolute;left:123px;top:173px;width:100px;height:30px;z-index:14" align="left"> <font style="font-size:17px" color="#FFFFFF" face="Arial"><a href="http://google.com" style="text-decoration:none"><font color="#FFFFFF">Friends</a></font></font></div> <div id="wb_Text5" style="position:absolute;left:195px;top:173px;width:100px;height:30px;z-index:14" align="left"> <font style="font-size:17px" color="#FFFFFF" face="Arial"><a href="http://google.com" style="text-decoration:none"><font color="#FFFFFF">Photos</a></font></font></div> <div id="wb_Text6" style="position:absolute;left:262px;top:173px;width:100px;height:30px;z-index:14" align="left"> <font style="font-size:17px" color="#FFFFFF" face="Arial"><a href="http://google.com" style="text-decoration:none"><font color="#FFFFFF">Mail</a></font></font></div> <div id="wb_Text8" style="position:absolute;left:680px;top:173px;width:100px;height:30px;z-index:14" align="left"> <font style="font-size:17px" color="#FFFFFF" face="Arial"><a href="http://google.com" style="text-decoration:none"><font color="#FFFFFF">Settings</a></font></font></div> <?php } else { ?> <form name="form1" method="post" action="checklogin.php"> <input type="text" id="myusername" style="position:absolute;left:651px;top:59px;width:174px;font-family:Arial;font-size:13px;z-index:4" size="29" name="myusername" value="" title="username"> <input type="password" id="mypassword" style="position:absolute;left:651px;top:86px;width:174px;font-family:Arial;font-size:13px;z-index:5" size="29" name="mypassword" value="" tabindex="password" title="password"> <input type="checkbox" id="Checkbox1" name="Checkbox1" value="on" style="position:absolute;left:648px;top:113px;font-family:Arial;font-size:13px;z-index:6"> <input type="submit" id="Button1" name="Login" value="Login" style="position:absolute;left:778px;top:117px;width:50px;height:43px;font-family:Arial;font-size:13px;z-index:8" title="Login"> </form> <div id="wb_Text7" style="position:absolute;left:584px;top:63px;width:47px;height:16px;z-index:22" align="left"> <font style="font-size:13px" color="#FFFFFF" face="Arial">Username:</font></div> <div id="wb_Text8" style="position:absolute;left:586px;top:88px;width:65px;height:16px;z-index:23" align="left"> <font style="font-size:13px" color="#FFFFFF" face="Arial">Password:</font></div> <div id="wb_Text2" style="position:absolute;left:669px;top:113px;width:111px;height:14px;z-index:7" align="left"> <font style="font-size:11px" color="#FFFFFF" face="Arial">Remember Me</font></div> <div id="wb_Text3" style="position:absolute;left:651px;top:131px;width:122px;height:14px;z-index:9" align="left"> <font style="font-size:11px" color="#FFFFFF" face="Arial">Forgot your password?</font></div> <?php } ?> <div id="searchengine" style="position:absolute;top:210px;left:70px;z-index:15"> <form action='http://www.squiblo.com/results.php?submit=Search' method='GET'> <font face='sans-serif' size='6'> <input type='text' size='20' name='search'> <select name="Gender" size="1" id="Combobox1"> <option selected>All</option> <option>People</option> <option>Groups</option> <option>Photos</option> <option>Videos</option> <option>Games</option> </select> <font face='Arial' size='4'>and</font> <select name="Gender" size="1" id="Combobox1"> <option selected>Nothing</option> <option>People</option> <option>Groups</option> <option>Photos</option> <option>Videos</option> <option>Games</option> </select> <input type='submit' name='submit' value='Search'> <input type="hidden" name="submit" value="Search"> </font> </form> </div> //results first ad <!-- Begin: AdBrite, Generated: 2009-08-07 6:55:00 --> <script type="text/javascript"> var AdBrite_Title_Color = '0000FF'; var AdBrite_Text_Color = '000000'; var AdBrite_Background_Color = 'FFFFFF'; var AdBrite_Border_Color = 'CCCCCC'; var AdBrite_URL_Color = '008000'; try{var AdBrite_Iframe=window.top!=window.self?2:1;var AdBrite_Referrer=document.referrer==''?document.location:document.referrer;AdBrite_Referrer=encodeURIComponent(AdBrite_Referrer);}catch(e){var AdBrite_Iframe='';var AdBrite_Referrer='';} </script> <script type="text/javascript">document.write(String.fromCharCode(60,83,67,82,73,80,84));document.write(' src="http://ads.adbrite.com/mb/text_group.php?sid=1291959&zs=3330305f323530&ifr='+AdBrite_Iframe+'&ref='+AdBrite_Referrer+'" type="text/javascript">');document.write(String.fromCharCode(60,47,83,67,82,73,80,84,62));</script> <div><a target="_top" href="http://www.adbrite.com/mb/commerce/purchase_form.php?opid=1291959&afsid=1" style="font-weight:bold;font-family:Arial;font-size:13px;">Your Ad Here</a></div> <!-- End: AdBrite --> </div> </body> </html>
  9. if you view this page on IE and Firefox the search form is a different amount of px from the top on each, how can this be solved? http://www.squiblo.com/results.php? my doctype is: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  10. im not sure if this can be done with the use of PHP, but i may as well ask, some of my web pages are being put onto the google search engine but i dont want them to be in the google results, how can i stop this from happening?
  11. that works perfect thank you
  12. i echoed $ext when trying to upload a .jpg image and it gave "jpg"
  13. i dont understand it, everything looks correct
  14. <?php session_start(); include("checklogin.php"); $_SESSION['myusername']; $username = $_SESSION['myusername']; if ($_POST['submit']) { //get file attributes $name = $_FILES['myfile']['name']; $tmp_name = $_FILES['myfile']['tmp_name']; $ext = substr($name, strrpos($name, '.') + 1); $allowed_types = array('.jpg', '.jpeg', '.gif', '.png'); if(!in_array($ext,$allowed_types)){ die("wrong file type"); }elseif ($name) { //start upload process $location = "./profileimages/$name"; move_uploaded_file($tmp_name,$location); $query = mysql_query("UPDATE members SET imagelocation='$location' WHERE username='$username'") or die(mysql_error()); die("Your profile picture have been upload! <a href='profile.php'>Profile</a>"); }else{ die("Please select a file!"); } } echo "Welcome, ".ucwords(strtolower($_SESSION['myusername']))."!<p>"; echo "Upload your image: <form action='upload.php' method='POST' enctype='multipart/form-data'> File: <input type='file' name='myfile'> <input type='submit' name='submit' value='Upload'> </form> "; ?>
  15. its always giving "wrong file type" no matter what the file type is
  16. why is it saying "wrong" file type when i try to upload a .jpg image? ive tried both if statements
  17. ive just tried to upload a .jpg image but it still echoed "wrong file type"
  18. could anyone edit/modify this so that only images can be uploaded (.jpg .jpeg .gif .png) and it rejects any other type of file such as .exe .wmv .flv and so on <?php session_start(); include("checklogin.php"); $_SESSION['myusername']; $username = $_SESSION['myusername']; if ($_POST['submit']) { //get file attributes $name = $_FILES['myfile']['name']; $tmp_name = $_FILES['myfile']['tmp_name']; if ($name) { //start upload process $location = "./profileimages/$name"; move_uploaded_file($tmp_name,$location); $query = mysql_query("UPDATE members SET imagelocation='$location' WHERE username='$username'") or die(mysql_error()); die("Your profile picture have been upload! <a href='profile.php'>Profile</a>"); } else die("Please select a file!"); } echo "Welcome, ".ucwords(strtolower($_SESSION['myusername']))."!<p>"; echo "Upload your image: <form action='upload.php' method='POST' enctype='multipart/form-data'> File: <input type='file' name='myfile'> <input type='submit' name='submit' value='Upload'> </form> "; ?>
  19. damn, i changed it on the wrong page, that has worked perfect now thank you
  20. so it must be my browser? would deleting all cookies etc help at all
  21. unfortunatly nothing has changed
  22. if i search "hello" and press enter on the keyboard the url changes to "http://www.squiblo.com/results.php?search=hello" but if i search "hello" and click enter with my mouse the url changes to "http://www.squiblo.com/results.php?search=hello&submit=Search"
  23. search for "admin" if you view the link, this may help http://www.squiblo.com/results.php?
  24. when i press enter it just goes to the results.php and no results are shown
  25. i put the javascript after session_start(); and before doctype is that right?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.