• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

PHP Problem

Kaliber

Kaliber
NLC
Hi,
I have a problem when if i do this:
PHP:
$key = $key1;
it wipes $key.....how can I make $key equal $key1 without wiping $key?

Sorry for the confusion lol
 
put it the other way around

PHP:
$key1 = $key

but seriously, If you're going to do it properly, call it from where ever you're getting $key from.
 
Back
Top