I was styling my index.html with css, then i switched to a index.php I thought everything may work the same, but I can seem to get my css file to work on my php? talking about using an external css sheet.
I am having problems in understanding how to generate a random link for people to share they're files after they have uploaded.sort of like mega upload. I am a newbie at php and would like some to point me to somewhere where i can read up on it.
When two conditions must both be met, if the first one is not met does it just skip and not bother checking the other condition?
example:
if(5 = 4 && $x != $y){
}
Does it even check to see if $x != $y? Because 5 doesn't equal 4, so whether or not $x != $y is correct the IF statement will fail...