Jump to content

techker

Members
  • Posts

    812
  • Joined

  • Last visited

Everything posted by techker

  1. i have a form to fill out for credit application.legaly you need to print it and sign it then fax .. so i have it 2 ways basicly i store it in my databse for future references.but the clients forget to send it ..cause the press print and then close the browser..so that is why i want my print button to do 2 functions..
  2. hey guys i have 2 buttons in my forms.print and the other send.. is it possible to make one that will print and send..
  3. this works if(strstr($_SERVER['HTTP_USER_AGENT'],'iPhone') || strstr($_SERVER['HTTP_USER_AGENT'],'iPod')) { header('Location: http://Site/Mobile'); exit(); }
  4. i need it to re direct to my mobile site?
  5. hey guys i found this code on about.com and i cant get it to work to detect my iphone .. <? if ( stristr($ua, "Windows CE") or stristr($ua, "AvantGo") or stristr($ua,"Mazingo") or stristr($ua, "Mobile") or stristr($ua, "T68") or stristr($ua,"Syncalot") or stristr($ua,"Mac OS X") or ///this part i tryed.. stristr($ua, "Blazer") ) { $DEVICE_TYPE="MOBILE"; } if (isset($DEVICE_TYPE) and $DEVICE_TYPE=="MOBILE") { $location='Mobile/index.php'; header ('Location: '.$location); exit; } ?>
  6. techker

    between

    ok i think i got it. SELECT * FROM `cars` WHERE `Kill` BETWEEN 60000 AND 120000 LIMIT 0 , 30 is this good?
  7. techker

    between

    Hey guys im doing this car dealer ship script and im stuck on a query. so i have search criteria's like by make ,color.. i have some for killometres. 60 to 90 90 to 110 110 to 160.. how can i make a query that i will search my killometre colome for cars between 60 and 90 clicks..
  8. thx for the help!i will try it out.
  9. but what if there is a 1 0r 2?
  10. but this example is for if the table is empty.now i have numbers
  11. hey guys im doing a dealership script for my body and i have a user section.now when we creat a user i set levels. like 1 is full dealer price 2 is retail price 3 is retail - so now im wondering how can i do it that it can check the level(thats ok with a querry) $sql = "SELECT Level FROM $tbl_name WHERE ID = $ID"; $result = mysql_query($sql); now i have my php echo echo $info['Retail_price'] can i do something like //echo (empty($row['d'])? "empty": "not empty"); //result not empty but for level?
  12. No mail server.i just have my simple servers.
  13. hey guys is it possible to make a script that you can send an email to and it will insert the email details?or trigger ? like im doing a portal for managing ticket numbers.when im on the road i would like to send and email and it can insert in the database that that job is done..
  14. hmm cant rename cause my insert is there to..so i quoted ` `Kill` it worked.but the query did not work..so im guessing that i have to `` all ??
  15. table CREATE TABLE IF NOT EXISTS `cars` ( `ID` int(11) NOT NULL auto_increment, `Make` varchar(20) NOT NULL, `Model` varchar(20) NOT NULL, `Year` varchar(12) NOT NULL, `Transmission` varchar(20) NOT NULL, `Full` varchar(20) NOT NULL, `Kill` varchar(20) NOT NULL, `Color` varchar(20) NOT NULL, `Doors` varchar(20) NOT NULL, `Description_short` text NOT NULL, `Description_long` text NOT NULL, `Location` varchar(20) NOT NULL, `Status` varchar(20) NOT NULL, `Retail_price` varchar(20) NOT NULL, `Nego_Price` varchar(20) NOT NULL, `Cost_price` varchar(20) NOT NULL, `Image_main` varchar(50) NOT NULL, `Image_2` varchar(50) NOT NULL, `Image_3` varchar(50) NOT NULL, `Image_4` varchar(50) NOT NULL, `Date` date NOT NULL, `Body` varchar(25) NOT NULL, `Viewedcount` varchar(15) NOT NULL default '1', `Vin` varchar(25) NOT NULL, PRIMARY KEY (`ID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=40 ;
  16. ya i forgot the die.. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Kill ='123456',Color ='', Doors ='2', Description_short='',Description_long ='',' at line 1
  17. hey guys i have tryed it all and i cant get it to work? mysql_connect("localhost", "me", "techker") or die(mysql_error()) ; mysql_select_db("a_me") or die(mysql_error()) ; $Make=$_POST['Make']; $Model=$_POST['Model']; $Year=$_POST['Year']; $Transmission=$_POST['Transmission']; $Full=$_POST['Full']; $Kill=$_POST['Kill']; $Color=$_POST['Color']; $Doors=$_POST['Doors']; $Description_short=$_POST['Description_short']; $Description_long=$_POST['Description_long']; $Location=$_POST['Location']; $Status=$_POST['Status']; $Retail_price=$_POST['Retail_price']; $Nego_price=$_POST['Nego_price']; $Cost_price=$_POST['Cost_price']; $Body=$_POST['Body']; $Image_2=$_POST['Image_2']; $Image_3=$_POST['Image_3']; $Image_4=$_POST['Image_4']; $Image_main=$_POST['Image_main']; $date = date("Y-m-d"); $ID=$_POST['ID']; $query = "UPDATE cars SET Make ='$Make', Model ='$Model',Year ='$Year', Transmission ='$Transmission',Full='$Full' , Kill ='$Kill',Color ='$Color', Doors ='$Doors', Description_short='$Description_short',Description_long ='$Description_long', Location ='$Location', Status ='$Status', Retail_price ='$Retail_price', Nego_Price ='$Nego_price', Cost_price ='$Cost_price', Body ='$Body' WHERE ID = '$ID' "; $result = mysql_query($query);
  18. hey guys is there a way to make a tab (lets says in IE8)bigger? like the title of my page is autosoft admin panel but the tab only shows like autosoft ad..
  19. Hmm.good question i will check that out.maybe the iframe does not use the session..or see the session
  20. techker

    table grid

    Thats what i doing now found a tutorial on net tuts about zebra rows. very cool to,thx!
  21. techker

    table grid

    Hey guys im looking on the net and i find data grid view but asp..and not what i need what i need is that now i have a table with info that replicates depending on how many products i have in he database.. like an online catalogue. i just want the tables to show in a diffrent color.. like first product blue second product white...only like 2 colors..
  22. hey guys is there a way to fix getting an error 500 with unlink? simple script. $file = $_GET['File']; //chdir('/admin/uploads/big/'); $do = unlink($file); if($do=="1"){ echo "The file was deleted successfully."; } else { echo "There was an error trying to delete the file."; }
  23. Hey guys im using an iframe to view a part of my admin . now i have a script that apears in the iframe to upload an image. it works.but the script has when upload is done: echo "<meta http-equiv=Refresh content=1;url=insert.php?ID=$ID&Name=$rand_name.$file_ext>"; but it gives me this.. res://ieframe.dll/http_404.htm#http://mysite.ca/admin/insert.php?ID=26&Name=122097380.gif[code=php:0] the target of my links in my menu is the iframe test.. but whats odd is the my form works(the action)
  24. techker

    if submit

    i just posted the part that i neede to change.sorry. the connection and stuff is in a config file. even if i change to what you posted nothing happens now?
×
×
  • 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.