lovesmith Posted March 30, 2008 Share Posted March 30, 2008 i m converting an asp project to PHP. I need to know what is the PHP equivalent of the asp function Request.ServerVariables("HTTP_AUTHORIZATION") Thanks in advance Link to comment https://forums.phpfreaks.com/topic/98580-what-is-php-equivalent-of-this-asp-tag/ Share on other sites More sharing options...
redarrow Posted March 30, 2008 Share Posted March 30, 2008 what you mean asp is not the same as php you re-write the code or use a coverting class or softwere.... recomend learn php.... what you have posted is a function for asp but php is slitly diffrent <?php $redarrow="34"; function red($redarrow){ echo "redarrow is the age of: $redarrow"; } red($redarrow); ?> functions http://www.w3schools.com/php/default.asp if your asking how to change the <?php <<< starting block with short tags then http://www.reallylinux.com/docs/php.ini Link to comment https://forums.phpfreaks.com/topic/98580-what-is-php-equivalent-of-this-asp-tag/#findComment-504530 Share on other sites More sharing options...
Barand Posted March 30, 2008 Share Posted March 30, 2008 $_SERVER["HTTP_AUTHORIZATION"] Link to comment https://forums.phpfreaks.com/topic/98580-what-is-php-equivalent-of-this-asp-tag/#findComment-504613 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.