The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
33 views

Issue with ob_get_contents - returns unreadable thing

I want to create a cache. At the beginning of my php index, I use : if ($docache) { $folder_cache = dirname(__FILE__).'/cache/'; $seconds_cache = 15*60; // 15 minutes $url_cache = ...
0
votes
1answer
26 views

Saving the output of a php script having lots of jquery ajax function working together to anew file

I have a php script at http://www.seooutlook.info/Testing_only/seo_latest/ (PLZ USE ONLY GOOGLE.COM as working example) which have loads of j query Ajax function which fire as soon as document ...
0
votes
0answers
17 views

Woo Commerce Buffering actions and using them in function

I have been playing around with WooCommerce and now I am stuck in a strange issue. WooCommerce follows a rigid pattern of actions for its shopping page, so for each product before_loop_item actions ...
1
vote
5answers
61 views

Better HTML within a returning function?

I can write HTML code within a string and return it but it always looks a bit messy. Is there any better solution for this? Example 1 - New line HTML New line for every row with HTML. A very messy ...
0
votes
3answers
58 views

ob_end_clean modifies variables as well

Here is a sample code: ob_start(); include("test.ini"); $string = ob_get_contents(); echo "<br/>"; echo "string: ".$string; and the output: testing = ini string: testing = ini When I add ...
2
votes
4answers
524 views

How does ob_get_contents work in Php?

This is a sample code from the book I am reading: ob_start(); include("{$path}.ini"); $string = ob_get_contents(); ob_end_clean(); $pairs = parse_ini_string($string); My question is, how does ...
0
votes
1answer
85 views

How to measure the download speed and size of a PHP document

Here is what I'm planning: My webpage is a simple filesharing system. I would like to show the download speed for the user. It is not 100%, but it's relative good. And i would like to write the time ...
0
votes
1answer
437 views

Php ob_get_contents fail

I am using ob_get_contents() to create a html file from php file. On development machine sometimes it works but on the test machine it did not work. <html> <body> <div> ...
3
votes
2answers
88 views

Php buffer output, css and mail

Currently I have a script that send some mail, the script result are a couple html tables: $from = "prueba.com <noreply@prueba.com>"; $to = "myemail@gmail.com"; echo "<div>"; ...
-1
votes
1answer
124 views

php - ob_start / fputs suddenly doesn't work anymore, is there anything that can stop it? [closed]

My code: function log_this($to_log, $prepend = null){ ob_start(); $fn = '../info.log'; $fp = fopen($fn, 'a'); fputs($fp, "\r\rnew log -------- \r\r"); ...
0
votes
0answers
206 views

Store php form output to variable

I have successfully written a dynamic form with output of the form and data posted to mysql. What I'd like to do now is save the output of my php to a variable which I can then pass to html2pdf for ...
1
vote
2answers
122 views

(PHP) How to pass the previous INCLUDE / REQUIRE calls into child files?

I'm creating my own Templating Script by using the ob_get_contents() as a core method. By using it, it can render out the other files, calling from the one single file. Just like, lets assume we have ...
0
votes
2answers
212 views

Retrieving output from a url. How do I force the dowload of a PDF from a url using php

I need to retrieve our reports from the jasperserver report engine as a PDF, then I want the PDF to be forced as a download, instead of being displayed inthe browser. The problem with displaying in ...
0
votes
1answer
94 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 ...
3
votes
2answers
248 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
417 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 ...
0
votes
2answers
676 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 = ...
1
vote
2answers
440 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 = ...
-1
votes
3answers
73 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> ...
0
votes
4answers
236 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 ...