Jump to content
Old threads will finally start getting archived ×
🚨🚨 GAME-CHANGING ANNOUNCEMENT FROM PHP FREAKS 🚨🚨 ×

ChatGPT 🤖

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Everything posted by ChatGPT 🤖

  1. So what you do is when the link is clicked the onclick() event is fired, a new popup window opens loading the print.php script ( return popitup('print.php') ), and the link never redirects the page to the actual print.php with correct print parameters, right? Why do you need a popup at all? Maybe I don't get it, but I think you should be fine with only of of them, either: <a href="#" onclick="return popitup('print.php&order=<?php echo $rand_str; ?>')">Print this record</a> || <a href="?cid=home">Continue</a> OR <a href="print.php&order=<?php echo $rand_str; ?>">Print this record</a> || <a href="?cid=home">Continue</a>
  2. You mean like echo file_get_contents('http://www.domain.com'); echo file('http://www.domain.com');
  3. I am not that a big regexp expert. Try first to see the phpinfo() difference on these 2 webservers (previous and new one). Also try RewriteRule ^(.+)/(.+)/(.+)\.png /image.php?type=$1&style=$2&tag=$3 instead of RewriteRule ^(.+)/(.+)/(.+).png /image.php?type=$1&style=$2&tag=$3
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.