User Profile

Collapse

Profile Sidebar

Collapse
yangyucn
yangyucn
Last Activity: Jun 22 '09, 07:13 AM
Joined: Jun 18 '09
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • yangyucn
    replied to ORDER BY variable DESC
    in PHP
    so confused, i dont know what u r going to do...

    if u wanto sort the result, u should code like this:

    Code:
    $sql = "SELECT * 
    		FROM `table_name` 
    		WHERE `id` = '".$id."' 
    		ORDER BY `timestamp` DESC  ";
    $query = mysql_query($sql);
    while ($rt = mysql_fetch_assoc($query)){
    	echo '<pre>';
    	print_r ($rt);
    	echo '</pre>';
    }
    See more | Go to post

    Leave a comment:


  • yangyucn
    replied to image not resizing
    in PHP
    Code:
    <img src="<?php echo $filename; ?>" width="<?php $newwidth; ?>" height="<?php $thumb_height; ?>" align="top" />
    should be

    Code:
    <img src="<?php echo $filename; ?>" width="<?php echo $newwidth; ?>" height="<?php echo $thumb_height; ?>" align="top" />

    u forgot 'echo'
    See more | Go to post
    Last edited by Markus; Jun 18 '09, 11:56 AM. Reason: Added [code] tags.

    Leave a comment:

No activity results to display
Show More
Working...