Since 4/24/2012 4:59:51 PM, jstucklex has written 5 articles and participated in 14349 conversations. jstucklex signature: jstucklex
jstucklex's articles:
Items(5) /1
regex help #11741 (12/9/2011 3:51:56 AM) comp.lang.php OK, guys, I'll be the first to admit my regex knowledge is more than limited. And I've never used ereg(). So, I need to convert the following ereg() call in some code I'm modifying to a preg() call. Can s... Jerry
Tuning for memory constrained system256 (7/2/2008 7:23:44 PM) comp.databases.mysql Hi, all, I'm done some tuning for better performance - but now I need something else. I have a customer with a memory-constrained VPS. Right now MySQL is taking up about 85MB total - way too much. It's a ... Jerry
Regex help #71932 (10/15/2007 2:37:51 AM) comp.lang.php OK, I give up here. I am DEFINITELY not a Regex expert, and have been working on this for hours with no luck. Basically I need to parse a page for certain information which will be fed back into CURL to pos... Jerry
Joins454 (8/18/2007 9:37:07 PM) comp.databases.mysql Hi, all, OK, I'm having a senior moment here. I think I've been working on these pages so long my brain is fried :-) To make it easier, I have three tables: UGroups: id int auto_increment description... Jerry
Errors building PHP4.3.8 with MySql053 (8/11/2004 10:11:03 PM) comp.lang.php Hi, all, I'm having a problem compiling PHP 4.3.8 with MySQL standard 4.0.20. There errors are: ext/mysql/php_mysql.o: In function `zif_mysql_create_db': /download/php-4.3.8/ext/mysql/php_mysql.c:1160: undef... Jerry
php run captcha script on localhost100 (5/19/2013 11:17:58 AM) comp.lang.php Hi
I'm trying to implement a php html javascript form with captcha validation. I'm trying to run the script from this page:
http://www.white-hat-web-design.co.uk/articles/php-captcha.php
as a localhost... pklacher(5)
display two values on page88 (4/18/2013 9:44:23 AM) comp.lang.php Hi all,
I'm an absolute newbie to PHP, but I need to send two values to a php-page and multiplay to calculate costs for an order.
Simplified, i have a form that sends number and price to calculate.php.
code:... s.hoitinga9072(3)
Rejecting Certain Non-ASCII Characters488 (4/19/2013 4:16:38 PM) comp.lang.php
I have a problem with people entering a slashed zero vs a standard
ASCII zero into HTML forms intended to store data in a MySQL database.
Is there a simple way in PHP to restrict input to the ASCII Charac... ILikeMy(7)
Undefined variable257 (4/24/2013 2:16:54 AM) comp.lang.php I have an simple MySQL/PHP app and it appears to be functional but the
webmaster has informed me that it is throwing lots of errors. So he
showed me the log file and I am trying to remedy the issues, but hav... question.boy(34)
bug in is_numeric1245 (5/12/2013 2:22:10 PM) comp.lang.php
Using PHP 5.3.6 on win7-74
if(is_numeric('x11.11c') returns TRUE
and variations eg: z1111x is also true
this does not seem right to me.
I've done a search but cant find mention in buglist.
... email4172(40)
Booleans compared to strings171 (5/13/2013 12:29:05 PM) comp.lang.php So, this is wierd:
$b = true;
var_dump($b);//boolean true
if(!$b)echo '!$b I wont echo, correctly so';
if($b)echo '$b I will echo, correctly so';
if($b == 'false')echo '$b == I will echo, which is w... doug8106(10)
Security risks allowing users to upload a css file?51 (5/15/2013 3:07:29 AM) comp.lang.php Are there any security risks involved in allowing a user to upload a css file?
I will be using the uploaded css file for a preview. Using another HTML template I already have on the server.
... bhushan154(7)