Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: indiantown
  • Content: Threads
  • Order by date
  1. indiantown

    Need help to display 10 each column

    <? //Now grab a section of that $db->open( "SELECT songlist.title, songlist.id, songlist.count_played, songlist.filename, songlist.artist, songlist.album, songlist.duration FROM songlist, category, categorylist WHERE category.name = 'Top 10' AND songlist.id = categorylist.songID AND...
  2. indiantown

    How to call the script *.php?c= with only one page

    Hello All, I am using the below script to create redirection of my page visitors as per their ip address, <?php $v=0;$f=0;$n=array(); if(isset($HTTP_GET_VARS['ip'])){ $ip=$HTTP_GET_VARS['ip'];} else{$ip='10.1.1.10';} $ip=sprintf("%u",ip2long($ip)); while(strlen($ip)<10){$ip='0'.$ip;}...
  3. indiantown

    Date Display in PHP

    Hello All, I need help to display date and time in my script, what I have tried whcih give me output Aug 12th, 2005 but I want to display Aug 12th, 2005 10:30 am (example) The part of the code I am using is below: / / / $time_stamp = stripslashes($cats[time_stamp]); $year =...
  4. indiantown

    Search query skips xx/08 & xx/09 data

    Hello All, I have a simple query running from which I display on my page expiring coupons in ASC order, $get_cats = "SELECT item_id, item_title, item_desc, item_subdesc, store_image, item_image, item_code, item_exp, dept_id FROM `store_item` WHERE `item_exp` LIKE '200%,%,%' ORDER BY `item_exp`...

Part and Inventory Search

Back
Top