i have put .php?.. in my code too...( but need add $_GET)
May be you can try to get rid of $_GET in certain php file if you use lower php version like php 5.0
Code: Select all
<?php
echo $hello;
?>Moderator: General Moderators
Code: Select all
<?php
echo $hello;
?>Code: Select all
<?
// Check if variable is in the url and that it is not empty
if (isset($_GET['var']) && $_GET['var'] != "") {
$var = $_GET['var'];
}
?>
Code: Select all
if (isset($_GET['var']) && $_GET['var'] != "") {Code: Select all
if (!empty($_GET['var'])) {