Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
B

bfg9000d360

@bfg9000d360
About
Posts
7
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Job Gig - Programmer - PHP Form Creation Needed
    B bfg9000d360

    I have the perfect quick moonlighting job This job will be done strictly online as well as the corresponding if need be a phone call might happen, but highly doubtful given the job Description: I have 2 very very small forms that need to be created. The requirements of the forms are to create various user input boxes, such as drop-down boxes, input text boxes, etc. This form needs to be connected to a MySQL database and the form needs to be in php if at all possible. The form needs to be a CRUD (Create, Read, Update, Delete) type form. When recalling up the information and or record from the database, it needs to be able to auto-populate the entire form with the record information that it calls up, including the drop down boxes with the proper selection. I have an excel spreadsheet of what the 2 online forms need to look like. Pay: Given how really small the 2 forms our base work time is 2 hours max at an hourly rate of 50$ an hour, I will pay a little more if a quick turn around happens. The project will not pay beyond the 2 hours. The project must be in a fully completed functioning stage, access to MySQL database and ftp will be given. I'm not under a really tight deadline for completion, but once the job starts I will need it within a couple of days. If you get into the project and realize you can't do it, no harm was done, just let me know and you can back out of it. Experience PHP Mysql Using a FTP. a small amount of html I don't need a resume or anything like that, just send me valid contact info and I will get back to you asap in regards to the project. You can message me or email me at bfg9000d@gmail.com if interested.

    Work Issues career php html database mysql

  • Shipping tracking Link output to google search from MYSQL Database
    B bfg9000d360

    that did it thanks so much

    Database database mysql com sales json

  • Shipping tracking Link output to google search from MYSQL Database
    B bfg9000d360

    correct. i tried doing this

    $output = "Tracking Number: $tracking_number
    $output += "
    Search";Order Number: $sales_order_number
    Parts: $parts";

    but it did not work

    Database database mysql com sales json

  • Shipping tracking Link output to google search from MYSQL Database
    B bfg9000d360

    well i tried inserting this code

    $output += "
    Search";

    into

    $output = "Tracking Number: $tracking_number
    Order Number: $sales_order_number
    Parts: $parts";

    and it keeps crashing my search box.

    Database database mysql com sales json

  • Shipping tracking Link output to google search from MYSQL Database
    B bfg9000d360

    I think we are getting crossed here on what I need. I have a searchable database that I created, when you enter the order number it outputs this information Tracking Number: Order Number: Parts: ----------------------- Ok lets say my database yielded these results Tracking Number: 123219843 Order Number: 9432 Parts: 234923 Since the database yielded Tracking Number: 123219843 I need to have that number thrown over to google to be searched by google. so it needs to become a link. I dont want to have to phyiscally copy and paste the tracking number into google.

    Database database mysql com sales json

  • Shipping tracking Link output to google search from MYSQL Database
    B bfg9000d360

    somebody said to add this but it does not seem to be working

    $output += "
    Search";

    Database database mysql com sales json

  • Shipping tracking Link output to google search from MYSQL Database
    B bfg9000d360

    This line
    $output = "Tracking Number: $tracking_number
    Order Number: $sales_order_number
    Parts: $parts";

    I need whatever $tracking_number outputs to become a hyperlink for google search with the outputted number search.

    Example

    The database outputs

    Tracking Number: 923489234 <=This number needs to be a blue hyperlink link to google search with that number search
    Order Number: 234324
    Parts: 30405324

    Once that tracking number is search in google, google determines what carrier it is saves me allot of trouble. I wish it was this simple $output = "Tracking Number: $tracking_number link google.com/search?q=$tracking_number any ideas guys. Thanks

    The rest of my code is below if you want to view it.

    real\_escape\_string($\_POST\['search'\]);
     
     //Query the database
      $resultSet = $mysqli->query("SELECT \* FROM invlist WHERE sales\_order\_number = '$search'");
    
      if($resultSet->num\_rows > 0){
          while($rows = $resultSet->fetch\_assoc())
          {
               $tracking\_number = $rows\['tracking\_number'\];
    		   $sales\_order\_number = $rows\['sales\_order\_number'\];
    		   $parts = $rows\['parts'\];
               
    		   $output = "Tracking Number: $tracking\_number  
    

    Order Number: $sales_order_number
    Parts: $parts";
    }
    }else{
    $output = "No results";
    }
    }
    ?>

    Database database mysql com sales json
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups