Jessica
Staff Alumni-
Posts
8,968 -
Joined
-
Last visited
-
Days Won
41
Everything posted by Jessica
-
Take the autoincrement ID from Database and call as default number
Jessica replied to shebbycs's topic in PHP Coding Help
You shouldn't change the ID. -
How on earth is that logical? I use 4 different browsers every day on 5 different devices.
-
Why are you only letting people login from the same browser they registered with?
-
Before each return add a die("test 1"); but change the number.
-
Adding GD and Image functions in a website
Jessica replied to needs_upgrade's topic in PHP Coding Help
Why would you put HTML tags in an image? -
Contact Form not Working on another Hosting
Jessica replied to lillizzierae's topic in Third Party Scripts
Check to see which one it was. -
How is it changing?
-
Stop random images from getting displayed twice
Jessica replied to Presto-X's topic in PHP Coding Help
Put the images in an array and shuffle it, then store it in the session. -
Contact Form not Working on another Hosting
Jessica replied to lillizzierae's topic in Third Party Scripts
Mail() returns a true or false value. -
Contact Form not Working on another Hosting
Jessica replied to lillizzierae's topic in Third Party Scripts
You're not even checking if the mail call was successful. -
You should have a function for getting and setting friendships, so the code would only have to be in one place. If you do it in mysql (which you can't anyway, not possible), your insert would fail, giving you LESS information than your few conditionals will.
-
You need to look at the manual for crypt.
-
Yes.
-
How to make my random string end in .html (rephrased)
Jessica replied to Xanco's topic in PHP Coding Help
Uhm. First of all you don't need the .'' in there. Add your ".html" string to the end. Look at the manual for string concatenation and parsing. -
FINE!
-
Psycho's post showed it. <?php $var; ?>
-
-
Noz. Figure out whichez partz you have a problemz with.
-
We will help you with code YOU write, or you can hire someone to do it for you. What have you done so far? Cause so far you're saying "help me out" but it's looking like "do it for me".
-
You'll need to write a script using something like PHP. If you need someone to do it for you, post in Freelance.
-
Did you lock yourself out with too many failed attempts?
-
The unix timestamp will not go back or forward when the clocks change. Did you look at the time function?
-
Variables do not get parsed inside single quoted strings. Either use double quotes and escape your existing double quotes, or use concatenation.
-
PHP HTML after 5 States in a Row Go to Next Row
Jessica replied to derekshull's topic in PHP Coding Help
You need to increment $i, and then use modulus. if($i%3==0){ // new row }Edit: Actually, what? Your title says every 5 states, your example shows 3, but really it looks like you just need to do a new column every state.