Jump to content

cutielou22

Members
  • Posts

    81
  • Joined

  • Last visited

Everything posted by cutielou22

  1. So are you saying to just move $allteammembers out of the "if statement"? Because I tried that. That does not work. I get the exact same problem. And no - I do not want to exclude or skip records that do not have a $placement.
  2. What it is doing: Right now it is taking the last known team members ($allteammembers) on all the rest of the results that do not have any team members. - So it should show nothing. What I want it to do: To show nothing for $allteammembers when there is no data found. - Like the way I think I have it coded. The Full Code Going Through Database: if ($stmt = $mysqli->prepare("SELECT title, caption, category, image, placement, teammember1, teammember2, teammember3, otherpeople, downloads, views FROM photogallery WHERE year = ? AND timeofday = ? AND status = 1 ORDER BY category, placement")) { $stmt->bind_param('is', $year, $timeofday); $stmt->execute(); $stmt->store_result(); $stmt->bind_result($title, $caption, $category, $image, $placement, $teammember1, $teammember2, $teammember3, $otherpeople, $downloads, $views); while($stmt->fetch()) { if ((!empty($placement))) { $stmt2 = $mysqli->prepare("SELECT boat, teammember1, teammember2, teammember3, channel, flathead, blue, total, bigfish, totalweight FROM tourneyresults WHERE year = ? AND timeofday = ? AND placement = ?"); $stmt2->bind_param('isi', $year, $timeofday, $placement); $stmt2->execute(); $stmt2->store_result(); $stmt2->bind_result($boat, $member1, $member2, $member3, $channels, $flatheads, $blue, $total, $bigfish, $weight); $stmt2->fetch(); $stmt2->close(); $link1 = addplus($member1); $link2 = addplus($member2); $link3 = addplus($member3); if ((!empty($member1)) && (!empty($link1))) {$member1 = "<a href='$mainurl/fisher/$link1'>$member1</a>";} if ((!empty($member2)) && (!empty($link2))) {$member2 = "and <a href='$mainurl/fisher/$link2'>$member2</a>";} if ((!empty($member3)) && (!empty($link3))) {$member3 = "and <a href='$mainurl/fisher/$link3'>$member3</a>";} if ($boat) {$boat2 = "~ Boat #$boat";} else {$boat2 = "";} if ($channels) {$channels2 = "$channels Channel(s)";} else {$channels2 = "";} if ($flatheads) {$flatheads2 = " | $flatheads Flathead(s)";} else {$flatheads2 = "";} if ($blue) {$blue2 = " | $blue Blue(s)";} else {$blue2 = "";} if ((!empty($member1)) && (!empty($link1))) {$allteammembers = "<b>Team Members: </b>$member1 $member2 $member3 $boat2<br><span style=\"padding-left: 20px\">Caught: $channels2$flatheads2$blue2</span><br><br>";} else {$allteammembers = "";} } $link5 = addplus($teammember1); $link6 = addplus($teammember2); $link7 = addplus($teammember3); if ((!empty($teammember1)) && (!empty($link5))) {$teammember1 = "<a href='$mainurl/fisher/$link5'>$teammember1</a>";} if (!empty($teammember2) && !empty($link6)) {$teammember2 = "and <a href='$mainurl/fisher/$link6'>$teammember2</a>";} if (!empty($teammember3) && !empty($link7)) {$teammember3 = "and <a href='$mainurl/fisher/$link7'>$teammember3</a>";} if ((!empty($teammember1)) && (!empty($link5))) {$teammemberspictured = "<b>Team Members Pictured: </b>$teammember1 $teammember2 $teammember3<br>";} else {$teammemberspictured = "";} if ((!empty($otherpeople)) && (((!empty($teammember1)) && (!empty($link5))) || ((!empty($member1)) && (!empty($link1))))) {$otherpeople2 = "<b>Other People in This Photo:</b> $otherpeople<br>";} if (!empty($otherpeople) && ((empty($teammember1)) && (empty($link5))) && ((empty($member1)) && (empty($link1)))) {$otherpeople2 = "<b>People in This Photo:</b> $otherpeople<br>";} if (($category == "0") || (empty($category))) {$category2 = "No Category";} if (($category == "1")) {$category2 = "First Place Winner";} if (($category == "2")) {$category2 = "2nd-5th Place Winners";} if (($category == "3")) {$category2 = "6th-12th Place Winners";} if (($category == "4")) {$category2 = "13th-20th Place Winners";} if (($category == "5")) {$category2 = "13th-24th Place Winners";} if (($category == "6")) {$category2 = "Big Fish Winners";} if (($category == "7")) {$category2 = "Take Off";} if (($category == "8")) {$category2 = "Weigh In";} if (($category == "9")) {$category2 = "Scoreboard";} if (($category == "10")) {$category2 = "Prizes from Drawing";} if (($category == "11")) {$category2 = "Kids Prizes and Face Painting";} if (($category == "12")) {$category2 = "Morning Meeting";} if (($category == "13")) {$category2 = "Sign Up";} if (($category == "14")) {$category2 = "Spectators";} if (($category == "15")) {$category2 = "Misc.";} if (($category == "16")) {$category2 = "Extra Photos";} if ($timeofday == "night") {$subfolder = "NightTourney";} else {$subfolder = "year";} ECHO<<<END <div class="gallery" id="container"> <div id="left"> <img src="$mainurl/images/$subfolder/$year/$image"> </div> <div id="bottom"> $category2 | <a href="$mainurl/images/year/$year/$image" class='links'>Download Image</a> | $downloads downloads | $views views | Report Error | Add A Comment </div> <div id="right"> <h3>$title</h3> $allteammembers $teammemberspictured $otherpeople2 <p>$caption</p> </div> </div> END; } $stmt->close(); } Snippet Not Working Correctly: if ((!empty($member1)) && (!empty($link1))) {$allteammembers = "<b>Team Members: </b>$member1 $member2 $member3 $boat2<br><span style=\"padding-left: 20px\">Caught: $channels2$flatheads2$blue2</span><br><br>";} else {$allteammembers = "";} I would like to know how to fix it and why it is doing it exactly? All my ideas failed. :/
  3. I agree with not running a query for every single file. I didn't think of that. But the code you gave doe's work thank you for the help and suggestions.
  4. On Notepad++ you can use FTP to automatically upload and edit files on your website. First off, in Notepad++ look in the top menu for "Plugins". From there you should see in the dropdown menu "NppFTP" Hover over that and click "Show NppFTP Window". That will add it to the screen - if not already showing. Now to add your FTP details do the following: Click the Setting icon in the NppFTP window/area. Choose "Profile Settings". Click "Add new" in bottom left corner. Now enter your FTP details. If you do not know this information you will need to go to your webhost and find something like "FTP details" in your cpanel. Also: .php files will show the coding. Change the file to .html if you want to test the result.
  5. Ran some extra tests and changed coding slightly (getting different results): if ($handle = @opendir("../../images/year/$year/")) { $blacklist = array('.', '..', 'index.php', 'index.html'); while (false !== ($file = readdir($handle))) { if (!in_array($file, $blacklist)) { if($stmt = $mysqli->prepare("SELECT id, image, title, caption, secureid FROM photogallery WHERE image = ? AND year = ? AND timeofday = ?")) { $stmt->bind_param('sis', $file, $year, $timeofday); $stmt->execute(); $stmt->store_result(); $stmt->bind_result($id, $image, $title, $caption, $photoid); $stmt->fetch(); $stmt->close(); } if ((isset($id)) && (isset($photoid)) && (isset($image))){ $idcheck = "<font color=\"green\">Found in Database</font>"; $admin = "<a href=\"../edit/photos.php?photoid=$photoid\">Edit</a>"; $details = "<b>$title</b> $caption"; } else { $idcheck = "<font color=\"red\">Not Found in Database</font>"; $admin = "<a href=\"../add/photos.php?image=$file&year=$year&timeofday=$timeofday\">Add</a>"; $details = ""; } echo "$file $image $details $idcheck $admin<br>"; } } closedir($handle); } else {echo "This image directory was not found.";} What It is Doing: Right now it is only reading the first file through the database and adding those results to the others file in the directory. EXAMPLE: This is what it is doing now. BoatDock2004.jpg BoatDock2004.jpg Take Off Found in Database Edit Weigh-in2004.jpg BoatDock2004.jpg Take Off Found in Database Edit FirstPlace2004.jpg BoatDock2004.jpg Take Off Found in Database Edit What I Want It To Do: I want it to show all the results regardless if found in the database or not and with the correct information (right now it is not showing the correct information afterwards as shown in the example above). EXAMPLE: Notice how image files are now matching up. (They do not necessarily need to match up maybe return blank if not found in the database.) BoatDock2004.jpg BoatDock2004.jpg Take Off Found in Database Edit Weigh-in2004.jpg Weigh-in2004.jpg NOT Found in Database Edit FirstPlace2004.jpg FirstPlace2004.jpg NOT Found in Database Edit
  6. Here is The Code: if ($handle = @opendir("../../images/year/$year/")) { $blacklist = array('.', '..', 'index.php', 'index.html'); while (false !== ($file = readdir($handle))) { if (!in_array($file, $blacklist)) { $stmt = $mysqli->prepare("SELECT id, image, title, caption, secureid FROM photogallery WHERE image = ? AND year = ? AND timeofday = ? LIMIT 5"); $stmt->bind_param('sis', $file, $year, $timeofday); $stmt->execute(); $stmt->store_result(); $stmt->bind_result($id, $image, $title, $caption, $photoid); //$stmt->fetch(); while ($stmt->fetch()) { if (($id) && ($photoid)){ $idcheck = "<font color=\"green\">Found in Database</font>"; $admin = "<a href=\"../edit/photos.php?photoid=$photoid\">Edit</a>"; $details = "<b>$title</b> $caption"; } else { $idcheck = "<font color=\"red\">Not Found in Database</font>"; $admin = "<a href=\"../add/photos.php?image=$file&year=$year&timeofday=$timeofday\">Add</a>"; $details = ""; } echo "$image $details $idcheck $admin<br>"; } $stmt->close(); echo "$file $details $idcheck $admin<br>"; } } closedir($handle); } else {echo "This image directory was not found.";} What It is Doing: Right now it is only showing the ones found in the database. What I Want It To Do: I want it to show all the results found in the database and the ones that are not found in the database. So I can see everything. If you need any more information. Please ask.
  7. Thanks I did not know this! Also, thanks @Psycho for helping me fix the main problem.
  8. @Psycho I tried your suggestion and found out mysqli_real_escape_string (); was causing the problem for some reason when putting it into the database. Why would that happen? How would I go about fixing this (if possible)?
  9. @Psycho It does show up in the database like that - I didn't think that was normal when I first noticed it. I will try your suggestion and hopefully it leads me in the right direction.
  10. Also make sure the coding is right - it should look something like this: <span class="logout"><a href="link">Whatever</a></span>
  11. Here is the full page coding: <?php $pagetitle = "Edit Band"; $checkrank = 45; include "../../header.inc.php"; $bandurl = mysqli_real_escape_string ($mysqli, $_GET["bandurl"]); $bandurl = cleansafely($bandurl); $stmt = $mysqli->prepare("SELECT id, bandname, bandurl, bio, source, formed, interests, influences, status, twitter, facebook, myspace, youtube, itunes, website, hometown, genre1, genre2, genre3, genre4, recordlabel, email, manager, manager2, bookingagent, bookingagent2, extra, dateadded FROM bands WHERE bandurl = ?"); $stmt->bind_param('s', $bandurl); $stmt->execute(); $stmt->bind_result($bandid, $bandname, $bandurl, $bandbio, $source, $formed, $interests, $influences, $status, $twitter, $facebook, $myspace, $youtube, $itunes, $website, $hometown, $genre1, $genre2, $genre3, $genre4, $recordlabel, $email, $manager2, $manageremail, $bookingagent2, $bookingagentemail, $extra, $dateadded); $stmt->fetch(); $stmt->close(); $extra = cleansafely($extra, "<br /><p><a><b><u><s><br><i>"); $stmt = $mysqli->prepare("SELECT id, name FROM genres"); $stmt->execute(); $stmt->bind_result($id, $genrename); while ($stmt->fetch()){ $genreoptions .= "<option value='$genrename'>$genrename</option>"; } $stmt->close(); ECHO <<<END <div class=clr></div> <center><a href="$baseurl/band/$bandurl" class="myButton">Band Page</a> <a href='$baseurl/589642r3d/add/bandmember.php?bandurl=$bandurl' class="myButton">Add Band Member</a></center> <div class=clr></div> <form action='band.pro.php' method='post' name='theMWAform' id='theMWAform' > <table width='98%' border='0' cellpadding='3' cellspacing='3'> <tr> <td>Band Name</td> <td>$bandname <input type='hidden' name='bandname' id='bandname' value='$bandname' maxlength='200'> <input type='hidden' name='bandid' id='bandid' value='$bandid'> </td> </tr> <tr> <td>Status</td> <td> <select name="status"> <option value='$status'>$status</option> <option value='Active'>Active</option> <option value='Hiatus'>Hiatus</option> <option value='Inactive'>Inactive</option> </select> <span class='small'>Year Formed</span> <input type='text' name='formed' size='6' id='formed' maxlength='4' value='$formed'> </td> </tr> <tr> <td>Biography</td> <td><textarea name='bio' type='text' rows='20' cols='150' id='bio' class='optional'><pre> END; $bandbio = htmlspecialchars($bandbio); //$bandbio = addbreaks($bandbio); //$bandbio = cleansafely($bandbio, "<br /><p><a><b><u><s><br><i>"); echo $bandbio; ECHO <<<END </pre></textarea></td> </tr> <tr> <td>Biography Source</td> <td> <select name='source'> <option value='$source'></option> <option value='0'>No Source</option> <option value='1'>Band Site</option> <option value='2'>Last FM</option> <option value='3'>Reverb Nation</option> <option value='4'>Live Nation</option> <option value='5'>AP (Alternative Press)</option> <option value='6'>Band of the Day</option> <option value='7'>Rolling Stone</option> <option value='8'>MTV</option> <option value='60'>Wikipedia</option> <option value='80'>Facebook</option> <option value='81'>MySpace</option> <option value='90'>User Submission</option> <option value='99'>Unknown Source</option> </select> </td> </tr> <tr> <td>Band Members</td> <td width=100%> <div class="memberdiv">Edit Band Members <a href='../list/bandmembers.php?bandurl=$bandurl' target='_blank'>Here</a>.<br></div> </td> </tr> <tr> <td>Website </td> <td><input name='website' size='35' type='text' id='website' class='optional defaultInvalid url' value='$website'> <span class='example'>http://www.example.com</span></td> </tr> <tr> <td>Twitter</td> <td><input name='twitter' size='35' type='text' id='twitter' class='optional' value='$twitter'> <span class='example'>Just the username.</span></td> </tr> <tr> <td>Facebook</td> <td><input name='facebook' size='35' type='text' id='facebook' class='optional' value='$facebook'> <span class='example'>Just the username.</span></td> </tr> <tr> <td>MySpace</td> <td><input name='myspace' size='35' type='text' id='myspace' class='optional' value='$myspace'> <span class='example'>Just the username.</span></td> </tr> <tr> <td>Youtube</td> <td><input name='youtube' size='35' type='text' id='youtube' class='optional' value='$youtube'> <span class='example'>Just the username.</span></td> </tr> <tr> <td>iTunes</td> <td><input name='itunes' size='35' type='text' id='itunes' class='optional' value='$itunes'> <span class='example'>Just the username.</span></td> </tr> <tr> <td>Hometown</td> <td><input name='hometown' size='35' type='text' id='hometown' class='optional' value='$hometown'></td> </tr> <tr> <td>Genre</td> <td> <select name="genre1"> <option value='$genre1'>$genre1</option> $genreoptions </select> <select name="genre2"> <option value='$genre2'>$genre2</option> $genreoptions </select> <select name="genre3"> <option value='$genre3'>$genre3</option> $genreoptions </select> <select name="genre4"> <option value='$genre4'>$genre4</option> $genreoptions </select></td> </tr> <tr> <td>Record Label</td> <td><input name='recordlabel' size='35' type='text' id='recordlabel' class='optional' value='$recordlabel'></td> </tr> <tr> <td>Email</td> <td><input name='email' size='35' type='text' id='email' class='optional email' value='$email'></td> </tr> <tr> <td>Manager</td> <td><span class='small'>Name</span><input name='manager' size='35' type='text' id='manager' class='optional' value='$manager2'> <span class='small'>Email</span><input name='manageremail' size='35' type='text' id='manageremail' class='optional' value='$manageremail2'></td> </tr> <tr> <td>Booking Agent</td> <td><span class='small'>Name</span><input name='bookagent' size='35' type='text' id='bookagent' class='optional' value='$bookagent2'> <span class='small'>Email</span><input name='bookagentemail' size='35' type='text' id='bookagentemail' class='optional' value='$bookagentemail2'> </td> </tr> <tr> <td>History</td> <td><input name='history' value='1' type='checkbox' id='history' class='optional'> <select name="message"> <option value=''></option> <option value='1'>Bio Edited</option> <option value='2'>Influences Edited</option> <option value='3'>Interests Edited</option> <option value='50'>Whole Page Edit</option> </select> </td> </tr> <tr> <td>Interests</td> <td><textarea name='interests' type='text' rows=10 cols=85 id='interests' class='optional'>$interests</textarea></td> </tr> <tr> <td>Influences</td> <td><textarea name='influences' type='text' rows=10 cols=85 id='influences' class='optional'>$influences</textarea></td> </tr> <tr> <td>Extra Info</td> <td><textarea name='extra' type='text' rows=10 cols=85 id='extra' class='optional'>$extra</textarea></td> </tr> </table> <p align='center'> <input type='submit' class='mybutton' value='Edit Band'> </p> </form> END; include "../../footer.inc.php"; ?>
  12. Removing addbreaks() just makes it so \r\n\r\n shows up instead.
  13. This is what I have so far to help you out . . <style> * { padding:0px; margin:0px; } html, body { width:100%; height:100%; max-height:100%; min-height:100%; } #wrapper { float: left; overflow: hidden; width:100%; max-width:100%; height:100%; min-height:100%; max-height:100%; background:#e7e7e7; } /* Header */ #header { position:relative; width:100%; height:50px; background:#515757; padding: 5px; } /* Middle */ #subwrapper { width: 100%; height: 100%; position: relative; background:#0CC; } #subwrapper:after { content: '.'; display: block; clear: both; visibility: hidden; height: 0; } #container { width: 100%; float: left; overflow: hidden; } #content {padding: 5px 0 0 240px;} /* Left Sidebar */ #leftTop { float: left; margin-left: -100%; margin-bottom: 50px; width: 225px; height: 85px; padding: 5px; } #leftBottom { float: left; width: 225px; margin-left: -100%; height:100%; background:#CCC; padding: 5px; } </style> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="utf-8" /> <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]--> <title></title> <meta name="keywords" content="" /> <meta name="description" content="" /> <link rel="stylesheet" href="style.css" type="text/css" media="screen, projection" /> </head> <body> <div id="wrapper"> <div id="header"> header </div><!-- #header--> <section id="subwrapper"> <div id="container"> <div id="content"> content </div><!-- #content--> </div><!-- #container--> <aside id="leftTop"> id </aside><!-- #leftTop --> <aside id="leftBottom"> nav </aside><!-- #leftTop --> </section><!-- #subwrapper--> </div><!-- #wrapper --> </body> </html>
  14. Find: <table cellspacing="1" cellpadding="0" align="center"> <tr> <td rowspan="2" class="move3"><a target="_blank" href="http://www.linkedin.com/groups?gid=3822802&goback=%2Eanp_3822802_1349390210881_1"><br /> <img src="http://respiratoryscholar.com/wp-content/uploads/2012/10/banner.jpg" style="border-width: 0px" /></a></td> </tr> <tr> <td class="move1"> <a href="http://www.facebook.com/pages/Respiratory-Scholar/176717429043118" target="_blank"><br /> <img src="http://respiratoryscholar.com/wp-content/uploads/2012/10/Facebook-button.jpg" style="border-width: 0px" /></a></td> <td class="move2"> <a href="http://twitter.com/RespiroScholar" target="_blank"><br /> <img src="http://respiratoryscholar.com/wp-content/uploads/2012/10/twitter_button.jpg" style="border-width: 0px" /></a></td> </tr> </table> And replace it with: <table cellspacing="1" cellpadding="0" align="center"> <tr> <td rowspan="2"><a target="_blank" href="http://www.linkedin.com/groups?gid=3822802&goback=%2Eanp_3822802_1349390210881_1"><br /> <img src="http://respiratoryscholar.com/wp-content/uploads/2012/10/banner.jpg" style="border-width: 0px" /></a></td> <td> <a href="http://www.facebook.com/pages/Respiratory-Scholar/176717429043118" target="_blank"> <img src="http://respiratoryscholar.com/wp-content/uploads/2012/10/Facebook-button.jpg" style="border-width: 0px" /></a></td> </tr> <tr> <td> <a href="http://twitter.com/RespiroScholar" target="_blank"> <img src="http://respiratoryscholar.com/wp-content/uploads/2012/10/twitter_button.jpg" style="border-width: 0px" /></a></td> </tr> </table> I did remove the classes you had - you can add them back if you would like, but that might move them again.
  15. I am not sure if you have already tried this or not, but this is what I use to show how many likes for my button. Put somewhere after the <body> tag: <div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/all.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> Put this where the button should appear: <div class="fb-like" data-href="FULLURLHERE" data-send="false" data-width="450" data-show-faces="false"></div> Replace "FULLURLHERE" with your facebook page url. There is also a facebook like button generator: https://developers.connect.facebook.com/docs/reference/plugins/like/
  16. When I insert a break <br> it shows up as <br> in the textarea. The info is coming from the database. How the info is ran through before adding to database (just in case you need this): $bandbio = mysqli_real_escape_string ($mysqli, $_POST["bio"]); $bandbio = strip_tags($bandbio, "<br /><p><a><b><u><s><br><i>"); $bandbio = rtrim($bandbio); Once taken from the database this is what the info goes through before displaying info in textarea: $bandbio = htmlspecialchars($bandbio); $bandbio = addbreaks($bandbio); //adds the break tag where needed echo $bandbio; So how would I make it so the <br> does not show up as html but actually shows as a line-break? For Example (this is what I would put in the text area): Some[press enter] text To show up as: Some text And not (like it is currently): Some<br> text
  17. Welcome to PHP Freaks jaycookies!
  18. Haha Hello and welcome to PHP Freaks! I ask stupid questions on here all the time - it seems - and always get the help I need right away. xP
  19. Well, welcome back AyKay47. . . . P.S. I love the new layout also.
  20. Adding store_result after the execute fixed the problem. I am not sure why I didn't even think to try and add that (because I usually do). Thanks for the help!
  21. I been trying to figure this out for about 3 or so hours (usually I wait 3 days of trying to fix something before I post here, but I can't wait xP) . . . and I am sure - as always - someone sees a simple fix and saves the day on PHPfreaks. Below is the code and details of what is happening is below. $stmt = $mysqli->prepare("SELECT question, uniqueid FROM pollquestion WHERE status = 1"); $stmt->execute(); $stmt->bind_result($question, $uniqueid); while ($stmt->fetch()) { echo "<center><div class=tablebox><h5>$question</h5></div></center><br><div class=tablebox>"; if (!$mysqli->query("SELECT optionname FROM pollchoices WHERE pollid = $uniqueid")) {echo "Multi-INSERT failed: (" . $mysqli->errno . ") " . $mysqli->error;} else{ $stmt2 = $mysqli->prepare("SELECT optionname FROM pollchoices WHERE pollid = ?"); $stmt2->bind_param('s', $uniqueid); mysqli_free_result(); $stmt2->execute(); $stmt2->bind_result($option); while ($stmt2->fetch()){echo "$option";} $stmt2->close(); } echo "</div>"; } $stmt->close(); With this I get the error "Multi-INSERT failed: (2014) Commands out of sync; you can't run this command now." I looked it up on Google and it was saying I should use multi_query. I replaced the query with multi_query and still no luck and no change in error. So I changed it back. I do stuff like this a lot in my coding and never came across this error. Should I be using multi_query? I never used it before, if so - how should I be using it? This is what I am trying to get to happen: I get the question for the poll and the unique id. With the unique id I can find out what poll options goes with it. That is all I want to do and I cannot get the poll options to show.
  22. Not really a fan of the layout - it needs some work in my opinion. I don't get the point of the homepage either. There is no information just images. Some details about the site on the homepage would be nice. Also, the homepage images load kind of slow also (at least for me) - maybe make them smaller in size. I am using Google Chrome on Windows XP.
  23. I must agree pop up alerts are annoying. I don't think much people will favor them over a page display. Pop up alerts are like pop up ads in a way and nobody likes ads. When they see the pop up alert they probably think ads and will want to go in another direction . . . And like Pikachu2000 said You will have to have the page display anyways.
  24. The site has a nice layout and is organized nicely. Just one question is the "Latest Specials" not supposed to be lined up? And for the tweets section it also says "loading latest tweets." - It does not seem to actually load any tweets. I am using Google Chrome (if that would make a difference.)
×
×
  • 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.