Search found 56 matches

by rax369
Tue Nov 26, 2002 11:02 pm
Forum: PHP - Code
Topic: Why the function setcookie() is not working for me
Replies: 2
Views: 596

forget about what I said, now I'm been able to use, this function.

Now my only problem is that I'm not seen the cookie in my temporary internet files folder. How could I be able to see the cookie 'appears' :?:

thx :wink:
by rax369
Tue Nov 26, 2002 10:15 pm
Forum: PHP - Code
Topic: Why the function setcookie() is not working for me
Replies: 2
Views: 596

Why the function setcookie() is not working for me

I was wishing to experiment the handling of cookies, but because my script doesnt want to understand this simple command: <?php setcookie("test_cookie", "some_value"); ?> I have not been able to deal w/cookies, could u tell me please, what I'm doing wrong. :cry: I f...
by rax369
Thu Nov 14, 2002 8:07 am
Forum: PHP - Code
Topic: What's bad w/this code ?
Replies: 10
Views: 1279

Forget what I said, I found the origin of my problem... DREAMWEAVER MX :!: this program sometimes I dont know why, but it generates lines of PHP code that u dont need, lines that u even havent typed, I what I have realized is that once u use the function 'mysql_fetch_array' over one variable storing...
by rax369
Wed Nov 13, 2002 10:47 pm
Forum: PHP - Code
Topic: What's bad w/this code ?
Replies: 10
Views: 1279

I did exactly what u told me phpScott, I even pasted ur code into my page, but what I got was the same result... the first element of the query is not appearing :evil: this is so stupid, that is not working, I dont know what's bad. I did as well what volka recommeded me, I and tried to exclude this ...
by rax369
Wed Nov 13, 2002 2:58 pm
Forum: PHP - Code
Topic: What's bad w/this code ?
Replies: 10
Views: 1279

I dont know what to do, I have ever done this in that way, and know, PHP comes w/that problem :cry:

HELP PLEASE :!:
by rax369
Wed Nov 13, 2002 1:14 pm
Forum: PHP - Code
Topic: What's bad w/this code ?
Replies: 10
Views: 1279

what's inbetween? <!-- somewhere must be a mysql_query --> ... what's here? ... while ($row_processors = mysql_fetch_array($rs_processors)) ok, volka, here is the rest of the code: <?php $query_rs_processors = "SELECT brand, name, price FROM products WHERE categoria LIKE '...
by rax369
Wed Nov 13, 2002 1:01 pm
Forum: PHP - Code
Topic: What's bad w/this code ?
Replies: 10
Views: 1279

What's bad w/this code ?

This code is not showing the firs element of my query: <?php <select name="processors" id="processors"> <? while ($row_processors = mysql_fetch_array($rs_processors)) {?> <option> <? echo $row_processorsї'brand']; ...
by rax369
Mon Nov 11, 2002 2:41 pm
Forum: Javascript
Topic: 2 Questions about PHP
Replies: 25
Views: 15633

thx phpScott, I'm gonna try it.

wow... :!: I never though this would become a long thread, of posting solutions for this problem, thx to all of u that help me, guys. :D
by rax369
Mon Nov 11, 2002 11:44 am
Forum: Javascript
Topic: How to solve this bug ?
Replies: 3
Views: 3175

How to solve this bug ?

What could be causing this problem at the client side ? http://www.boomspeed.com/rax369/error_web01.gif I have tested my page at the server side thousand of times and I have never had, that buggy message. I dont have idea to what line of code refers that "line 48" expected ")" HE...
by rax369
Sun Nov 10, 2002 1:57 pm
Forum: PHP - Code
Topic: How to validate if a variable is an integer or not
Replies: 12
Views: 1778

ok :!: finally I solved it, forget about the help, it's already fixed my code

:D :D :wink:
by rax369
Sun Nov 10, 2002 12:12 pm
Forum: PHP - Code
Topic: How to validate if a variable is an integer or not
Replies: 12
Views: 1778

c' mon, guys, help me with this problem, I dont know what to do :cry:
by rax369
Fri Nov 08, 2002 8:17 am
Forum: PHP - Code
Topic: How to validate if a variable is an integer or not
Replies: 12
Views: 1778

thx phpScott, for ur help, I did that validation, coz' I need some piece of code that doesnt allow the user go to the 'final check page' (where the customer checks the products requested from the provider X) leaving some drop down menu without a product choosen and specifying its quantity, and vicev...
by rax369
Thu Nov 07, 2002 12:57 pm
Forum: PHP - Code
Topic: How to validate if a variable is an integer or not
Replies: 12
Views: 1778

I had already located my problem twigletmac thx for the code, is at this part: :evil: <?php //here begins the problematic validation code if ($GO == 1) { for ($i = 0; $i <= 9; $i++) { if ( is_numeric($products_cantї$i]) && $products_cantї$i] >...
by rax369
Wed Nov 06, 2002 10:11 am
Forum: PHP - Code
Topic: How to validate if a variable is an integer or not
Replies: 12
Views: 1778

ok, twigletmac I followed, ur advice, and I changed is_int for is_numeric, but my code, continues, not working at all. Watch how my code looks like now: $GO = 1; for ($i = 0; $i <= 9; $i++) &#123; if (($products&#1111;$i] == "Choose Product / Remove Product") && ($products_...
by rax369
Tue Nov 05, 2002 11:16 pm
Forum: PHP - Code
Topic: How to validate if a variable is an integer or not
Replies: 12
Views: 1778

or post some more code so i can see if its a different problem ok, here u go, this is my complete validation code: $GO = 1; for ($i = 0; $i <= 9; $i++) &#123; if (($products&#1111;$i] == "Choose Product / Remove Product") && ($products_cant&#1111;$i] != "")) ...