[PHP] fwrite fopen problem

2006-08-16 Thread Jeremy Schreckhise
stumped. Jeremy Schreckhise, M.B.A.

RE: [PHP] Programming question - New to PHP

2006-06-29 Thread Jeremy Schreckhise
Try $link = mysql_connect('localhost',$youruser,$yourpassword) or die(); mysql_select_db('yourdb'); $query = 'SELECT * FROM Moses_Lake_Lions'; if(!$result = mysql_query ($query,$link)) { // do error c

RE: [PHP] Re: PHP 5, Windows, and MySQL

2006-06-27 Thread Jeremy Schreckhise
But is libmysql.dll the dll from mysql; the one packaged with php 5 will not work. Jeremy Schreckhise, M.B.A -Original Message- From: Beauford [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 27, 2006 10:33 AM To: php-general@lists.php.net Subject: RE: [PHP] Re: PHP 5, Windows, and MySQL

RE: [PHP] Re: PHP 5, Windows, and MySQL

2006-06-27 Thread Jeremy Schreckhise
Here is the direct download portal for the two corrected crucial .dlls. http://dev.mysql.com/downloads/connector/php/ -Original Message- From: Jeremy Schreckhise [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 27, 2006 10:14 AM To: php-general@lists.php.net Subject: [PHP] Re: PHP 5

RE: [PHP] Re: A variable inside a variable?

2006-06-27 Thread Jeremy Schreckhise
I ran into the same problems; here is how I solved them. 1. Install MySQL 5 2. Install PHP 5 3. Modify php.ini extensions directive to point to php_mysql.dll (the one that was packaged with php 5) 4. Here is the tricky one make sure mysql is finding the libmysql.dll packaged

[PHP] Re: PHP 5, Windows, and MySQL

2006-06-27 Thread Jeremy Schreckhise
I ran into the same problems; here is how I solved them. 1. Install MySQL 5 2. Install PHP 5 3. Modify php.ini extensions directive to point to php_mysql.dll (the one that was packaged with php 5) 4. Here is the tricky one make sure mysql is finding the libmysql.dll packaged W

RE: [PHP] Bug madness

2006-04-27 Thread Jeremy Schreckhise
Have you tried? error_reporting(E_ALL^E_NOTICE); Jeremy Schreckhise, M.B.A. -Original Message- From: Dave Goodchild [mailto:[EMAIL PROTECTED] Sent: Thursday, April 27, 2006 10:37 AM To: php-general@lists.php.net Subject: [PHP] Bug madness Hi all, I have been mashing my head

RE: [PHP] how to keep spaces in parameters in URL?

2006-04-24 Thread Jeremy Schreckhise
Try print("Foo Bar"); Jeremy Schreckhise, M.B.A. Hello, == Foo Bar"; ?> == Then the URL showed up at the bottom border of the browser has 'name=foo'. What should I do to have 'name=foo bar' in the URL? I tried htmlspecialchars but did not see an

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Jeremy Schreckhise
#x27;t the programs, nor the vars I'm just using this as an example) phpBB_create.php?user=webdevuser&pass=webdevuserpass Of course you would do this programmatically with variables from your webdev form. Jeremy Schreckhise, M.B.A. -Original Message- From: Weber Sites

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Jeremy Schreckhise
Wasn't trying to steal anyone's thunder. Created the response, went to work, then sent it later. Your response adequate and complete. Sorry to intrude. Jeremy Schreckhise, M.B.A. -Original Message- From: John Nichel [mailto:[EMAIL PROTECTED] Sent: Thursday, April 20, 20

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Jeremy Schreckhise
Why couldn't you use your login (weberdev). I.E. when a user creates an account you also push this data onto the phpBB2 db. Find where phpBB is creating a user, analyze the encryption method use, modify your login to create both entries. Jeremy Schreckhise -Original Message-

RE: [PHP] How do I output error messages

2006-02-21 Thread Jeremy Schreckhise
You could pass your error message back and forth as an HTTP post. $myMsg = $_GET['error_msg']; if(isset($myMsg)) { //print my message } else { //process as normal } -Original Message- From: Paul Goepfert [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 21, 2006 12:53 PM

[PHP] ODBC question

2005-12-28 Thread Jeremy Schreckhise
with windows installed on drive c:   Thanks in advance,     Jeremy Schreckhise -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Increase execution time

2005-03-10 Thread Jeremy Schreckhise
How do you increase the execution time in php? I have set max_execution_time to 360 and setting set_time_limit(0); nothing works. I still get Fatal Error: maximum execution time of 60 seconds. Please Help.