
Originally Posted by
DrByte
you can check if $a_item1 is blank by $a_item1 == ''
Yes I did that
Code:
if( ($a_item1 !='') && (!is_numeric($a_item1)) ){
$error = true;
$messageStack->add('silent', 'Leave empty, or enter only numbers in your bid input box!');
}
and before I could change && to || something strange started to happen..
A. I am changing only 2 php files while I am testing this. I made a back-up of these files (working even though not correctly, but I get to see the form).
B. Now I start making changes and the page that should show the form is blank.
C. I restore the original files (incorrectly coded, but at least displaying my form) and the screen is still blank!!
How can it be???
Totally confused now..