i need to have the following entry equal "$phone"
Code: Select all
if (isset($result)) {
echo $rowsel['phonenumber']; }
else if (isset($results)) {
echo $rowsels['default_phone_number']; }
else {
echo $rowselss['entry']; };
$phone = "(CODE)";
Moderator: General Moderators
Code: Select all
if (isset($result)) {
echo $rowsel['phonenumber']; }
else if (isset($results)) {
echo $rowsels['default_phone_number']; }
else {
echo $rowselss['entry']; };
Replace 'echo' with '$phone ='webdzine wrote:i need to have the following entry equal "$phone"