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 strongm 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: *

  1. heavenprince

    Can we append/concat query string someway

    I myself discovered the answer, simply put a space before the " and type=4" bcz all the clauses in a query be seperated by a whitespace. so it should be: $query = $query . " and type = 4"; not: $query = $query . "and type = 4";
  2. heavenprince

    Can we append/concat query string someway

    Can we append/concat query string someway, because the followng code is giving a warning rather than executing the query including the concatenated part: <?php require_once ('conn_db.php'); $query = "select * from pm where city_id = 7"; $query = $query . "and type = 4"; $num =...
  3. heavenprince

    How can we embed html code part of the email body with mail()

    How can we embed html code part of the email body, if we are using the mail() function or is there any other of doing it i am using php 4 and using a similar code as follows: $to = abc@abc.com'; $subject = 'ABC Subject'; $message = '<img...

Part and Inventory Search

Back
Top