Search results

  1. M

    Sanyo Zio from Cricket. Currently Android 1.6 Any updates coming soon?

    I recently purchased the Sanyo Zio from cricket, because it was their best android phone. I was told by the person at cricket, that the zio had 1.6 android but was going to get an update soon. After searching the web a little bit, I dont see any evidence of an update. Anyone know something I dont?
  2. M

    Why is this MYSQL & PHP not working correctly?

    mysql_connect($host,$database,$pass); @mysql_select_db($database) or die( "Unable to select database"); $query = "SELECT zipcode FROM zips_table WHERE zipcode='$zip'"; $res = mysql_query($query); if (mysql_num_rows($res) < 1) { header('Location: bounce.php'); } else{ } The...
  3. M

    Question about date ranges with php & mysql.?

    I am creating a records management website for my company. Im pretty much done with the majority of the work, now I just have the filters left. I am trying to create date range filters like: 'Show Last Month's Records' 'Show Last Week's Records', 'Show This Weeks Records',. etc..... Can...
  4. M

    PHP/MySQL Question? How do I pull a record from a MySQL database and email the...

    ...results via PHP? How do I pull a record from a MySQL database and email the results via PHP? PLEASE READ!! To be clear, I know how to send an email and pull a record from a mysql database using PHP. What I am asking here is once I have my MySQL query results, what are the steps needed to...
  5. M

    PHP/MySQL Question? How do I pull a record from a MySQL database and email

    the details via PHP? How do I pull a record from a MySQL database and email the results via PHP?
  6. M

    Google Adwords and Organic/Natural Search Question?

    I have a google adwords advertising campaign running. I have several different adgroups, most of which contain a single keyword. Using this method, I have super-relative ads to most of the search terms. To help out my quality score, I want to go back and tailor individiual landing pages for each...
  7. M

    Do most cell phones read HTML text messages?

    Do most cell phones read HTML text messages? Or just plain text?
  8. M

    PHP/MySQL Question. Exact match vs broad match script problem.?

    I am accessing a MySQL database by using a small php script on my webserver. I have created a search function that is not working correctly. There are no results being displayed currently. Here is the code snippet $srch = $_POST['search_by']; //db column to search $srch_type =...
  9. M

    How to adjust PHP time for timezones?

    I have a script that stores user-entered info into a database. When the database entry is added, Im using php date("g:i A"); to display the time of the database entry. However, when this time is entered, it comes up one hour ahead of my time. How do I correct this?
  10. M

    Is there any way to automate a database export using php/mysql?

    I have a database through my webhost that stores data submitted from our website. I need to export this information into a pdf file everyday at a certain time. Is there any way to automate this task using php or sql? Extra Info: My database supports pdf exports. Once file is exported I need it...
  11. M

    General PHP question. Zip Codes.?

    My business has a website we are developing where people can visit and receive free estimates for different types of projects. Currently its setup to where all of the united states can visit the website fill out and submit the form. The problem is that we are only servicing the greater houston...
  12. M

    Why is this form field not showing up in results email? (php/java question)?

    I have a form with a hidden field that becomes visible when user clicks a specific checkbox. The problem is that the user input from this hidden form field is never included in the form results email. I am using Javascript to perform the show/hide tasks...... relevant code below <script...
  13. M

    HTML/PHP form question. How to hide a form item until a radio button is selected?

    Question X on my form is a radio group that has 3 possible choices. If the customer picks option 2, I need to have a drop-down box appear that has 3 options. How do I accomplish this? I would like the drop-down box to be hidden until the customer selects option 2.
  14. M

    3 Part PHP Form Question.?

    I have 3 parts in my form; 1) Customer info page one - 2) Customer info page two - 3)form action. My question is how do I maintain the customer input data from Part 1 to the form action? Parts 1 and 2 will be on seperate html pages. and the form action will be sending an email.
  15. M

    How to make PHP form that sends its results as a text message?

    I want customers to be able to fill out a form on my website and when they click submit, I need those results sent to me in a text message on my phone. Can anyone give me some pointers, helpful information??
  16. M

    3 part php upload/contact form question. email doesnt include any data from the form.?

    I have a upload/contact form on my website. the form uses the post method. the problem is that when the email is sent, there is nothing in the email. I suspect it is because i am using $_Post['name'] to define a lot of fields. and the mail script is started after the uploads are finished and...
  17. M

    PHP question: how to call back the $_POST fields from a previous script.?

    Here is how my upload/contact form works: 1. post method form including contact fields and multiple file uploads \/ 2. sends action to the script that processes the uploads. \/ 3. after uploads complete, sends action to the email processing script 1. I have tried both...
  18. M

    When using PHP for multiple uploads, how do I number the uploads? (ex....

    ...upload-1.ext - upload-2.ext )? The PHP script I am using changes the name of the file to the last name of the uploader. If the uploader chooses to upload 4 files, how do I get the php script to recognize that and stick an ascending number on the back of the filename? Here is my current php...
  19. M

    How to rename a file upload to reflect a form input field? (PHP Script)?

    I have a upload form in my website, the form includes a field for the uploader to put their last name in. field name="lastname" Anyway, I would like to know how to rename the file upload to the persons last name and attach a number to the end for multiple uploads, etc. If anyone could help me...
  20. M

    This PHP script uploads and re-names a file to the uploaders' last name, but

    there is no period before the ext? I am using a php script (shown below) to allow users to upload files to my web server. For some reason, after it renames the file, it removes the period before the extension. What can I add to the code to get it to upload the file with the period intact? <?php...
Back
Top