Por favor, ten en cuenta 📝 que si deseas hacer un trato 🤝 con este usuario, está baneado 🔒.
Hola colegas espero y me ayuden acomodar este codigo voy al grano tengo este codigo
pero como hago para ponerle if($USE_MOD_REWRITE) al primero el segundo tiene espero su ayuda de la comunidad
PHP:
<?php
$strLink = "";
$strApplyLink = "";
if(!empty($arrPosting['link']) && !empty($arrPosting['serial']))
{
$strLink = "http://www.".$DOMAIN_NAME."/job/".format_str(stripslashes(strip_tags($arrPosting["id"])))."/".format_str(stripslashes(strip_tags(utf8_decode($arrPosting["title"])))).".html";
$strApplyLink = "http://www.".$DOMAIN_NAME."/job-".$arrPosting['serial'].'.htm" target="_blank" rel="nofollow';
}
else
{
if($USE_MOD_REWRITE)
{
$strLink = "http://www.".$DOMAIN_NAME."/job/".format_str(stripslashes(strip_tags($arrPosting["id"])))."/".format_str(stripslashes(strip_tags(utf8_decode($arrPosting["title"])))).".html";
$strApplyLink = "http://www.".$DOMAIN_NAME."/apply/".$arrPosting["id"]."/".format_str(stripslashes(strip_tags($arrPosting["title"]))).".html";
}
else
{
$strLink = "index.php?mod=search&job=".$arrPosting["id"];
$strApplyLink = "index.php?mod=apply&posting_id=".$arrPosting["id"];
}
}
?>
pero como hago para ponerle if($USE_MOD_REWRITE) al primero el segundo tiene espero su ayuda de la comunidad