Recent content by michaelnaeseth

  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??
Back
Top