Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
142 views

How to return php code from mysql record?

How to return php code from mysql row 'content' record where it might contain just plain text like: Hello! or/and php like: Lets try some php: <?php echo phpinfo(); ?> without casing ...
2
votes
2answers
161 views

Multiple instances breaks WordPress shortcode

I wrote a shortcode that displayed author profiles based on id. For example [user-profile id="1"] would display the profile block defined in user-profile.php for author 1. It worked (even with ...
1
vote
2answers
222 views

ob_get_contents stopped working for some unknown reason

This script worked fine for a few weeks then stopped working for no reason. 1.<?php 2.ob_start(); 3.include "weather xml website"; 4.$data=ob_get_contents(); 5.ob_clean(); 6. 7.$xmlFile = ...
0
votes
1answer
64 views

How to loop a function in PHP?

I have this code to read content from XML (my hosting provider do not support php_domxml.dll extention) and I use FOR loops to print result in each input. <?php function ...
0
votes
2answers
301 views

ob_start() within a loop

I've got a problem when looping using foreach() loop and inside of this loop using ob_start() and ob_get_clean(). Here's my function: protected function renderEmail() { $template = ...
0
votes
4answers
151 views

Parse PHP code on the fly and store it in a temp var

I'm creating my own templatesystem because I only need a few little operations to be supported. One of them is loading widgets with dynamic data generated from a database in my template. Is there a ...
-1
votes
3answers
64 views

Transfer a variable to earier point without goto

How to write this without goto: ob_start(); $a = 0; echo "START of LEFT<br />"; begin: if($a > 0) { echo "CONTENT LEFT: $a<BR />"; <VERY DIFFICULT ALGORHITM> ...