Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.8K
~1K People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for turt2live

Hi, try this...... Download My Hit Single <?PHP // Define the path to file $file = 'ryboe_tag_cloud.zip'; if(!file) { // File doesn't exist, output error die('file not found'); } else { // Set headers header("Cache-Control: public"); header("Content-Description: File Transfer"); header("Content-Disposition: attachment; filename=$file"); header("Content-Type: application/zip"); header("Content-Transfer-Encoding: binary"); // Read the file …

Member Avatar for vibhaJ
0
1K
Member Avatar for jpadgett

Hi, You can try this out...It may help u..:) <?php mysql_connect("localhost", "mysql_user", "mysql_password") or die("Could not connect: " . mysql_error()); mysql_select_db("mydb"); $result = mysql_query("SELECT id, name FROM mytable"); while ($row = mysql_fetch_array($result, MYSQL_NUM)) { printf("ID: %s Name: %s", $row[0], $row[1]); } mysql_free_result($result); ?> source:php.net

Member Avatar for MariahGwen
0
158

The End.