Recent content by Technerd_Shawn

  1. T

    How can I POST div (contentEditable) information in an HTML form?

    Basically, I have a PHP file that I want users to be able to change the text of a div and then submit the form.. Like this <form action="somefile.php" method="POST"> <div id="editable" contentEditable="true" for="editable2">Lorem ipsum dolor ....</div> <input type="hidden" name="editable2"...
  2. T

    I have a sql command that selects AVG score from two tables, php/mysql, but it

    returns empty? I have a sql command that selects AVG score from two tables, php/mysql, but it returns empty if one of the tables dosnt have a score for the employee.. so here it is SELECT ( (SUM(QA_Scores.score_total) + SUM(qaform.qscore)) / (COUNT(QA_Scores.score_total) +...
  3. T

    Having Problems With PHP Update : Error?

    First the error that I am getting : "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 'option=2, emp_id=116702 WHERE id = 1' at line 1" Second the code : $emp = $_POST['emp'. $x]; $group = $_POST['group'...
  4. T

    How do you install mod_auth_mysql Apache module on WAMP for Windows Seven?

    I have tried everything I could possibly do, and the tutorials ect i have found are for win2k and older! I have the .htaccess all set up, I just need to know how to create the .so file I have installed Visual Studio 2008 and i tried running this command "nmake /f Makefile.win _apacher" Now...
  5. T

    PHP "$_POST", how come it allows up to 8mb to be transferred?

    Can anyone give me an example as to why when using PHP's $_POST, they would need up to 8mb? (By default of course, I know it can be changed)
  6. T

    Trouble installing PHP point of sale?

    Permission denied, Make sure the files are not Readable Only.
Back
Top