Jump to content

just got "punked"


Lefu

Recommended Posts

hello friends,

 

just got "punked" by my hosting firm, they have disabled (allow_url_fopen) and I use my code which is stored in the DB- mysql.

 

usually I had 3 files parent, child,sibling.

 

parent- index.php, child-iframe.php,sibling-content.php

 

upon clicking a manu, I go send a variable from Child to Sibling where the appropriate  content will be retrieved from db and echoed by Sibling.

 

 

already tried this in parent and child:

              ini_set('allow_url_fopen', 'on');  :-\

 

have no idea what to do,

 

Link to comment
Share on other sites

For example:

 

require_once('child-iframe.php');

 

If you want to pass data to the child-iframe.php script, just set the variables like this:

 

$foo = 'bar';
require_once('child-iframe.php');

 

Variable $foo will be available inside child-iframe.php

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.