I know nothing and need help please

Reply

Join Date: Jul 2007
Posts: 2
Reputation: purplephp is an unknown quantity at this point 
Solved Threads: 0
purplephp purplephp is offline Offline
Newbie Poster

I know nothing and need help please

 
0
  #1
Jul 24th, 2007
My web designer disapeared and left me with my site done in PHP and MySQL.

It was all ok until the other day when something suddenly stopped working.

I don't know anything about MySQL or PHP.

On my site when you click 'recently added' it used to display products in date order and there is a php file called recent.php.

This stopped working the other day and put all the files in title order.
I looked inside the control panel and managed to change it to date order, but this is now all the files, not just the 'recent' ones.

The recent.php seems to have stopped working.

Can anyone help me please?

Here is the code that stopped working.

  1. <?php
  2.  
  3.  
  4. $result = mysql_query("SELECT * FROM products WHERE owner LIKE '%Lady Lita%' AND released NOT LIKE '' ORDER BY 'released' DESC")
  5. or die(mysql_error());
  6.  
  7. //Add the rows to an array called result
  8. $row = mysql_fetch_array( $result );
  9.  
  10. $i=0; //A counter
  11.  
  12. //For each entry found, grabs its variables and stick em in a table
  13. while ($i < 5) {
  14.  
  15. include ("variables.php"); //Take the database variables and make them useable in php
  16.  
  17. if ($type != "Spell"){include ("product_table.php");}
  18. if ($type == "Spell"){include ("spellsandhexes_table.php");}
  19.  
  20. $i++; //Repeat until all 5 entries have been populated
  21. }
  22. //Disconnect from database on each page refresh (keeps things secure)
  23. ?>
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 5,264
Reputation: iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold 
Solved Threads: 377
Featured Poster
iamthwee's Avatar
iamthwee iamthwee is offline Offline
Posting Expert

Re: I know nothing and need help please

 
0
  #2
Jul 24th, 2007
ORDER BY 'released'

So is released a date then?
*Voted best profile in the world*
Reply With Quote Quick reply to this message  
Join Date: Jul 2007
Posts: 2
Reputation: purplephp is an unknown quantity at this point 
Solved Threads: 0
purplephp purplephp is offline Offline
Newbie Poster

Re: I know nothing and need help please

 
0
  #3
Jul 24th, 2007
Originally Posted by iamthwee View Post
ORDER BY 'released'

So is released a date then?
Yes, the date the file is released.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC