>
> I can't find anything like this in FPDF 1.53 or in the documentation for
> version 1.60. I'd be interested if you can pinpoint it.
>
> Paul
>
Sorry, you need to load a class extension, see the website below:
http://www.fpdf.de/downloads/addons/36/
On Wed, May 20, 2009 at 11:31:49AM -0400, Dan Shirah wrote:
> >
> > > How can I click a button using JavaScript print function and have it
> > > generate a PDF with FPDF and get the PDF printed automagically? It seems
> > > I have done this before but I cannot recall what I did.
> > >
> > > TVMIA
>
> > How can I click a button using JavaScript print function and have it
> > generate a PDF with FPDF and get the PDF printed automagically? It seems
> > I have done this before but I cannot recall what I did.
> >
> > TVMIA!
>
If I remember correctly there is an FPDF command **autoprint()** you
On Tue, May 19, 2009 at 12:22 PM, Jay Blanchard wrote:
> How can I click a button using JavaScript print function and have it
> generate a PDF with FPDF and get the PDF printed automagically? It seems
> I have done this before but I cannot recall what I did.
>
> TVMIA!
>
> --
> PHP General Mailing
How can I click a button using JavaScript print function and have it
generate a PDF with FPDF and get the PDF printed automagically? It seems
I have done this before but I cannot recall what I did.
TVMIA!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/
paragasu schreef:
> i have this cute little problem.
sounds more like a homework assignment. by now you know range(),
by all means have array_map() too:
array_map("print_r", range("a","z"));
> i want to print a to z for site navigation
> my first attempt work fine
>
> for($i = '65'; $i < '91';
This one time, at band camp, "Leon du Plessis" wrote:
> I used that notation before, and it did not work 100%.
> Adapt as follows:
>
> for ($i = 'a'; $i <= 'z'; $i++)
> if ($i == "aa") break; else echo $i;
>
foreach(range('a', 'z') as $letter ) { echo $letter; }
Kevin
--
PHP General
ben
> -Original Message-
> From: Paul M Foster [mailto:pa...@quillandmouse.com]
> Sent: 16 January 2009 07:55 AM
> To: php-general@lists.php.net
> Subject: Re: [PHP] print a to z
>
> On Thu, Jan 15, 2009 at 08:32:14PM -0800, paragasu wrote:
>
>> i have this
php-general@lists.php.net
Subject: Re: [PHP] print a to z
On Thu, Jan 15, 2009 at 08:32:14PM -0800, paragasu wrote:
> i have this cute little problem. i want to print a to z for site
navigation
> my first attempt work fine
>
> for($i = '65'; $i < '91';
On Thu, Jan 15, 2009 at 08:32:14PM -0800, paragasu wrote:
> i have this cute little problem. i want to print a to z for site navigation
> my first attempt work fine
>
> for($i = '65'; $i < '91'; ++$i)
> echo chr($i);
>
> but someone point me a more interesting solutions
>
> for($i = 'a'; $i <
> $letters = range('a', 'z');
> foreach ($letters as $letter) {
> echo $letter;
> }
wow.. that is a very nice solutions you give me chris.
thanks
On 1/15/09, Chris wrote:
> paragasu wrote:
>> i have this cute little problem. i want to print a to z for site
>> navigation
>> my first attempt work
paragasu wrote:
i have this cute little problem. i want to print a to z for site navigation
my first attempt work fine
for($i = '65'; $i < '91'; ++$i)
echo chr($i);
but someone point me a more interesting solutions
$letters = range('a', 'z');
foreach ($letters as $letter) {
echo $letter;
i have this cute little problem. i want to print a to z for site navigation
my first attempt work fine
for($i = '65'; $i < '91'; ++$i)
echo chr($i);
but someone point me a more interesting solutions
for($i = 'a'; $i < 'z'; ++$i)
echo $i
the only problem with the 2nd solutions is it only pri
ifference.
Satyam
- Original Message -
From: "Danial Rahmanzadeh" <[EMAIL PROTECTED]>
To:
Sent: Tuesday, February 13, 2007 4:49 PM
Subject: [PHP] print() or echo
is it true that echo is a bit faster than print()? in general, when we
don't
ne
"negligible".. blarg spelling. :)
= = = Original message = = =
As referenced in the manual ( http://us2.php.net/manual/en/function.echo.php ),
check out this url:
http://www.faqts.com/knowledge_base/view.phtml/aid/1/fid/40
Short story, there is a difference, but the speed difference is negliga
As referenced in the manual ( http://us2.php.net/manual/en/function.echo.php ),
check out this url:
http://www.faqts.com/knowledge_base/view.phtml/aid/1/fid/40
Short story, there is a difference, but the speed difference is negligable.
If anyone cares, I prefer echo too. Not sure why. Shorter
On Tue, 2007-02-13 at 19:19 +0330, Danial Rahmanzadeh wrote:
> is it true that echo is a bit faster than print()? in general, when we don't
> need a return value, which one is better to choose?
Yes, echo is faster than print. I would suggest echo over print since it
is shorter and faster :)
Cheer
is it true that echo is a bit faster than print()? in general, when we don't
need a return value, which one is better to choose?
Cheers,
Danial Rahmanzadeh
On Tue, 26 Sep 2006 21:45:58 +1000, David Tulloh wrote:
> Google Kreme wrote:
>> On 25 Sep 2006, at 06:11 , Sancar Saran wrote:
>> ...
>>
>> If this is generating hundred of K of HTML, use ' instead of "
>>
>> (yes, it's faster).
>>
>
> I've seen this stated several times and at first glance i
On Wed, September 27, 2006 3:37 am, Sancar Saran wrote:
> Thanks for supporting, because of approaching the problem I don't want
> to
> change generate once echo one style.
>
> And I found solution like this,
> I split variable into an array and generate loop for printing, mostly
> fix the
> probl
-- Forwarded Message --
Subject: Re: [PHP] Print or Echo takes lots of time
Date: Wednesday 27 September 2006 06:37
From: Børge Holen <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
On Wednesday 27 September 2006 01:46, Richard Lynch wrote:
> On Tue, September 26, 200
On Tue, 2006-09-26 at 18:46 -0500, Richard Lynch wrote:
> On Tue, September 26, 2006 6:35 pm, Curt Zirzow wrote:
> >> I wonder what would happen if you put your swap on a RAM disk?
> >
> > I actually have done this, it works like a charm :)
> >
> > you just have to ensure swap doesn't run out... of
On Tue, September 26, 2006 6:35 pm, Curt Zirzow wrote:
>> I wonder what would happen if you put your swap on a RAM disk?
>
> I actually have done this, it works like a charm :)
>
> you just have to ensure swap doesn't run out... of course i'd only
> recomend this on a dedicated machine for like fir
On 9/26/06, Richard Lynch <[EMAIL PROTECTED]> wrote:
On Tue, September 26, 2006 12:16 pm, Børge Holen wrote:
> On Tuesday 26 September 2006 02:07, Robert Cummings wrote:
>> On Mon, 2006-09-25 at 17:39 -0600, Google Kreme wrote:
>> > I'm sitting here with 4 Gigs of RAM trying to figure out how to
On Tue, September 26, 2006 12:16 pm, Børge Holen wrote:
> On Tuesday 26 September 2006 02:07, Robert Cummings wrote:
>> On Mon, 2006-09-25 at 17:39 -0600, Google Kreme wrote:
>> > I'm sitting here with 4 Gigs of RAM trying to figure out how to
>> use
>> > it all... :-) (Me, in 2005)
>>
>> Not real
On Mon, September 25, 2006 7:11 am, Sancar Saran wrote:
> When I was check the performance of my system I found interesting
> resuts.
>
> My code stores html output into a variable. When page creation
> complete I
> printed out the variable.
>
> Problem was generation html code takes 0.5 second and
On Tuesday 26 September 2006 02:07, Robert Cummings wrote:
> On Mon, 2006-09-25 at 17:39 -0600, Google Kreme wrote:
> > I'm sitting here with 4 Gigs of RAM trying to figure out how to use
> > it all... :-) (Me, in 2005)
>
> Not really related to the post... but I find a good way to eat up 4 gigs
>
Google Kreme wrote:
> On 25 Sep 2006, at 06:11 , Sancar Saran wrote:
> ...
>
> If this is generating hundred of K of HTML, use ' instead of "
>
> (yes, it's faster).
>
I've seen this stated several times and at first glance it seems to make
sense. The double quoted version has all the \n and r
On Mon, 2006-09-25 at 17:39 -0600, Google Kreme wrote:
> I'm sitting here with 4 Gigs of RAM trying to figure out how to use
> it all... :-) (Me, in 2005)
Not really related to the post... but I find a good way to eat up 4 gigs
of RAM is to run several VMWare nodes :) Depending on what these n
On 25 Sep 2006, at 06:11 , Sancar Saran wrote:
$strPage = " yada dayda";
...
$strPage.= " another html tags";
...
$strPage.= getSqlDataAndCreateSomeHtmlCOde();
If this is generating hundred of K of HTML, use ' instead of "
(yes, it's faster).
--
I'm sitting here with 4 Megs of RAM trying to
Hi,
When I was check the performance of my system I found interesting resuts.
My code stores html output into a variable. When page creation complete I
printed out the variable.
Problem was generation html code takes 0.5 second and just
echo $strPage takes 2.0 or more second.
my code structur
Thx Miles and Jay
-Oorspronkelijk bericht-
Van: Miles Thompson [mailto:[EMAIL PROTECTED]
Verzonden: vrijdag 17 maart 2006 22:35
Aan: php-general@lists.php.net
Onderwerp: Re: [PHP] print page from php
At 09:57 AM 3/17/2006, Reinhart Viane wrote:
>All,
>
>I have a web page
At 09:57 AM 3/17/2006, Reinhart Viane wrote:
All,
I have a web page with the results from several database queries.
Now this page has an undefined horizontal and vertical size.
Does anyone know if there is a php script available that will automatically
split the webpage into parts that can fit
[snip]
I have a web page with the results from several database queries.
Now this page has an undefined horizontal and vertical size.
Does anyone know if there is a php script available that will
automatically
split the webpage into parts that can fit on an A4 page?
Or do I have to set boundaries
All,
I have a web page with the results from several database queries.
Now this page has an undefined horizontal and vertical size.
Does anyone know if there is a php script available that will automatically
split the webpage into parts that can fit on an A4 page?
Or do I have to set boundaries
Jochem,
Good point. I thought he meant object given his example. :P
David
Jochem Maas wrote:
> David Grant wrote:
>> Mathijs,
>>
>> Mathijs wrote:
>>
>>> I have the following situation :
>>>
>>> >>
>>> class A {
>>> public $var1;
>>> }
>>>
>>> class B extends A {
>>> public $var2;
>>> }
>>>
>>>
David Grant wrote:
Mathijs,
Mathijs wrote:
I have the following situation :
Now I want to print this object
***object***
Does anybody know how I can print class A also ?
***class***
(class and object are not interchangable concepts - yet
they are closely related :-)
Mathijs,
Mathijs wrote:
> I have the following situation :
>
>
> class A {
> public $var1;
> }
>
> class B extends A {
> public $var2;
> }
>
> ?>
>
> Now I want to print this object
>
> $obj = new B;
> print_r($obj);
>
> ?>
>
> Does anybody know how I can print class A also ?
The above
I have the following situation :
Now I want to print this object
Does anybody know how I can print class A also ?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
[snip]
Hi, I have a table with:
month, day, year, value
I need to print every value corresponding to a day, for example:
value[day1], if exist..
value[day2], if exist..
vale...
etc
It is possible?
[/snip]
Welcome to "Is It Possible Day" at the PHP Ranch. :)
Yes, it is possible to print
Hi, I have a table with:
month, day, year, value
I need to print every value corresponding to a day, for example:
value[day1], if exist..
value[day2], if exist..
vale...
etc
It is possible?
--
Este mensaje ha sido analizado por MailScanner
en busca de virus y otros contenidos peligrosos
Web standards my friend.
Use CSS, learn from the master: http://www.alistapart.com/articles/goingtoprint/
-Original Message-
From: Tony Kim [mailto:[EMAIL PROTECTED]
Sent: Friday, October 15, 2004 3:10 PM
To: [EMAIL PROTECTED]
Subject: [PHP] Print window function???
Is there a function
Is there a function for print window in php? I tried javascript
window.print() but this doesn't work in ie 5.2 on mac. Thanks.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
thanks
On Wed, 1 Sep 2004 22:18:30 -0500, Brent Clements
<[EMAIL PROTECTED]> wrote:
--
Using Opera's revolutionary e-mail client: http://www.opera.com/m2/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
EMAIL PROTECTED]>
Cc: "devil_online" <[EMAIL PROTECTED]>;
<[EMAIL PROTECTED]>
Sent: Wednesday, September 01, 2004 10:12 PM
Subject: Re: [PHP] print at a specific time
Brent Clements wrote:
> $minute = 01;
Be careful with the leading zeros... that's interpre
CTED]>
Sent: Wednesday, September 01, 2004 10:12 PM
Subject: Re: [PHP] print at a specific time
> Brent Clements wrote:
>
> > $minute = 01;
>
> Be careful with the leading zeros... that's interpreted as an Octal
> number by PHP, but Octal 1 == Decimal 1 in this case.
Brent Clements wrote:
$minute = 01;
Be careful with the leading zeros... that's interpreted as an Octal
number by PHP, but Octal 1 == Decimal 1 in this case. :)
--
---John Holmes...
Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/
php|architect: The Magazine for PHP Professionals – www.p
- Original Message -
From: "devil_online" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, September 01, 2004 9:05 PM
Subject: Re: [PHP] print at a specific time
> and to print at minutes too, kije 9h01?
>
> thanks
> "John Holme
and to print at minutes too, kije 9h01?
thanks
"John Holmes" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> devil_online wrote:
>
> > Hi, I want to print or echo something in a specific time like 9.pm.
> > how can i do it?
>
> if(date('H')==21)
> { echo "'tis 9pm and all is well?";
devil_online wrote:
Hi, I want to print or echo something in a specific time like 9.pm.
how can i do it?
if(date('H')==21)
{ echo "'tis 9pm and all is well?"; }
--
---John Holmes...
Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/
php|architect: The Magazine for PHP Professionals – www.php
Hi, I want to print or echo something in a specific time like 9.pm.
how can i do it?
thanks
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
devil_online wrote:
Hi, I want to print each element of a column of a mysql database.
For exemple to print the first element could we do like this:
Code:
$result = mysql_query( "SELECT username FROM users" );
$column = mysql_fetch_array($result);
print $column[1];
prin
Hi, I want to print each element of a column of a mysql database.
For exemple to print the first element could we do like this:
Code:
$result = mysql_query( "SELECT username FROM users" );
$column = mysql_fetch_array($result);
print $column[1];
print $column[3];
Th
* Thus wrote Gerben:
> css:
>
> img{display:none;}
Dont forget to mention the media:
@media print {
img { display: none; }
}
Of course this is going on the assumption you dont have things like
Curt
--
First, let me assure you that this is not one of those shady pyramid schemes
you've b
css:
img{display:none;}
"John W. Holmes" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> francesco[AT]automationsoft[DOT]biz wrote:
>
> > I know that it is a simple and maybe elementary
> > question, but there is in PHP a function, like print
> > or echo, that print only the text of
francesco[AT]automationsoft[DOT]biz wrote:
I know that it is a simple and maybe elementary
question, but there is in PHP a function, like print
or echo, that print only the text of an HTML page on printer?
No. Use CSS.
--
---John Holmes...
Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/
Hi all,
I know that it is a simple and maybe elementary question, but there is in PHP a
function, like print or echo, that print only the text of an HTML page on printer?
Thanks in advance for help.
That's the way I ended up going
pass the name and value along :)
Not what I was hoping for, but it gets the job done, and it's only for
debugging pruposes
thanks
Ahbaid.
Michal Migurski wrote:
but what I want is to be able to pass any variable to a procedure and
have the variable name and
> but what I want is to be able to pass any variable to a procedure and
> have the variable name and value printed by the procedure.
Because PHP passes arguments by value, you will be out of luck in most
cases -- by the time your debugging function sees the argument, it's no
longer tied to the cal
ame."\n";
echo "Variable Value: ".$var."\n";
}
showvar($test);
This is the only thing that works for me.I know it is messy
-Original Message-
From: Michael Sims [mailto:[EMAIL PROTECTED]
Sent: 05 May 2004 4:23 PM
To: [EMAIL PROTE
Dave Avent wrote:
> function showvar($var) {
>
> foreach($GLOBALS as $key => $value) {
> if($value == $var) {
> $varname = $key;
> }
> }
The problem with the above is that it assumes that th
EMAIL PROTECTED]
Sent: 05 May 2004 4:23 PM
To: [EMAIL PROTECTED]
Subject: RE: [PHP] Print a variable's name
Ahbaid Gaffoor wrote:
> Thanks Ryan,
>
> but what I want is to be able to pass any variable to a procedure and
> have the variable name and value printed by the pro
Ahbaid Gaffoor wrote:
> Thanks Ryan,
>
> but what I want is to be able to pass any variable to a procedure and
> have the variable name and value printed by the procedure.
>
> Can this be done?
>
> I'm trying to extend my library of debugging functions/procedures by
> having a procedure which ca
Thanks Ryan,
but what I want is to be able to pass any variable to a procedure and
have the variable name and value printed by the procedure.
Can this be done?
I'm trying to extend my library of debugging functions/procedures by
having a procedure which can be used to "inspect" a variable whenev
Just escape it...
eg:
$ryan = "something";
echo "\$ryan =".$ryan;
that would print:
$ryan = something
HTH.
Cheers,
-Ryan
On 5/5/2004 5:02:25 PM, [EMAIL PROTECTED] wrote:
> I'd like to print a variable's name in a procedure along with it's
value
>
> Is there a way to do this?
>
>
> fo
I'd like to print a variable's name in a procedure along with it's value
Is there a way to do this?
for example:
---
function showvar($somevar) {
echo "Now showing: ". <... code to show var name .> ."\n";
Thank you Robert.
"Robert Cummings" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> On Sat, 2004-04-17 at 12:35, Pooya Eslami wrote:
> > That is exactly my question! how do I look for a .mp3 file?!
> > I tried
> > if ($file != "." && $file != ".." && $file=="*.mp3")
> > but it does
On Sat, 2004-04-17 at 12:35, Pooya Eslami wrote:
> That is exactly my question! how do I look for a .mp3 file?!
> I tried
> if ($file != "." && $file != ".." && $file=="*.mp3")
> but it doesn't work!
if( eregi( '\.mp3$', $file ) )
Cheers,
Rob.
--
.--
That is exactly my question! how do I look for a .mp3 file?!
I tried
if ($file != "." && $file != ".." && $file=="*.mp3")
but it doesn't work!
"Matt Matijevich" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> on that page ther is examples
>
> if ($handle = opendir('.')) {
>whi
on that page ther is examples
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
But how do I get all the .mp3 files? can I use *.mp3? and how ?
"Matt Matijevich" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> http://www.php.net/readdir
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
http://www.php.net/readdir
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hi,
I want to write a simple script that looks for all the files with a common
name and show them, like all the .mp3 files or all the .doc files. How do I
go about it?
Thank you,
-Pooya
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hello,
Does anyone know how to actually print PHP code in Color to actual
paper from Dreamweaver MX? We like to paste the code up to the wall
here to get a bigger look at it. I know you can do it in BBedit, but
MX is what we like.
Just curios. Thanks!
Narcis Florea wrote:
Hi,
Hello,
I'm using Apache/PHP/MySQL in my business project
Thank you for using php!
My big problem now is: How can I print a page on a standard page format,
like "Letter, left margin: 0.25 inch, etc.)
When I print, I must every time set page margin manually, and I want this
Hi,
I'm using Apache/PHP/MySQL in my business project
My big problem now is: How can I print a page on a standard page format,
like "Letter, left margin: 0.25 inch, etc.)
When I print, I must every time set page margin manually, and I want this
being made by php or javascript automatically on load
Is it possible to print all values of all variables in php file? Including
global, local...
Thanks
_
Get a FREE online virus check for your PC here, from McAfee.
http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963
--
PHP Gen
On Tue, 25 Nov 2003, Burhan Khalid wrote:
> Dale Hersh wrote:
> > I know that in php there are a bunch of basic functions for opening a
> > connection to a printer and then handling the printer queue and so forth. I
> > would like to know how to take a string and echo that to the printer in php.
>
Dale Hersh wrote:
I know that in php there are a bunch of basic functions for opening a
connection to a printer and then handling the printer queue and so forth. I
would like to know how to take a string and echo that to the printer in php.
The printer functions only work under Windows. From
http:
I know that in php there are a bunch of basic functions for opening a
connection to a printer and then handling the printer queue and so forth. I
would like to know how to take a string and echo that to the printer in php.
Thanks,
Dale
--
PHP General Mailing List (http://www.php.net/)
To unsubsc
On Mon, Oct 20, 2003 at 05:28:08PM -0500, Joseph Bannon wrote:
:
: How do you print the error message sent back from MySQL?
:
: $resultCC = mysql_query($queryCC) or die("???");
Stop using stupid Perl syntax.
$res = mysql_query($query);
if ($res === false)
{
Joseph Bannon wrote:
How do you print the error message sent back from MySQL?
$resultCC = mysql_query($queryCC) or die("???");
??? = mysql_error()
--
---John Holmes...
Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/
php|architect: The Magazine for PHP Professionals – www.phparch.com
How do you print the error message sent back from MySQL?
$resultCC = mysql_query($queryCC) or die("???");
J.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
'.$year.'';
}
?>
Edward Dudlik
Becoming Digital
www.becomingdigital.com
- Original Message -
From: "Shaun" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, 24 September, 2003 08:29
Subject: [PHP] Print current and next thr
$current=date('Y');
for($i=0;$i<4;$i++){
echo $current + $i;
}
Shaun wrote:
Hi,
I am trying to print the current and next three years in a form. Using the
following code I can only print 2000, 2001, 2002, 2003:
'.date("Y", mktime(0, 0, 0, 0, 0, $i)).'';
} else {
e
Hi,
I am trying to print the current and next three years in a form. Using the
following code I can only print 2000, 2001, 2002, 2003:
'.date("Y", mktime(0, 0, 0, 0, 0, $i)).'';
} else {
echo ''.date("Y", mktime(0, 0, 0, 0, 0, $i)).'';
}
$i++;
}
?
[snip]
What I would like to do is to make an optional page that can print
information to a specified printer. Can PHP do this?
If so how???
[/snip]
Start by RTFM at http://us3.php.net/printer
HTH!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.
What I would like to do is to make an optional page that can print
information to a specified printer. Can PHP do this?
If so how???
Please help!!!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hi. I'm surprised you haven't been jumped on already for this one. Variables in
double-quoted and heredoc-style strings are expanded; variables in single-quoted
strings
aren't. I refer you to the excellent PHP manual -- one of the first pages you should
absorb...
http://www.php.net/manual/en/l
Hi,
Tuesday, July 8, 2003, 5:22:04 PM, you wrote:
TR> Hi,
>>> btw what would be nice is a print_raw command that does no
>>> parsing just sends the stuff :)
>>> (Would be good for template systems where you know there is no php
>>> hidden in there.) ... might gain a couple of micro seconds
PO>>
Hi,
>> btw what would be nice is a print_raw command that does no
>> parsing just sends the stuff :)
>> (Would be good for template systems where you know there is no php
>> hidden in there.) ... might gain a couple of micro seconds
PO> I believe this is called "breaking out of PHP mode
PO> and i
> As to which is faster is does not really matter as the speed of echo
> print and heredoc is dictated by the connection speed to the
> requesting client. If this is a factor in your overall operation you
> can use output buffering to save the contents and output them at the end of
> your script.
Hi,
Monday, July 7, 2003, 11:33:38 PM, you wrote:
SK> Hi, again!!
SK> I'm looking for opinions as to which is better/faster, print or heredoc.
SK> print makes the code layout look nice and eazy to debug, where heredoc IS faster
but makes the code look like a nightmare with everything jammed aga
> Hi, again!!
I thought I saw this post once already.
> I'm looking for opinions as to which is better/faster, print or heredoc.
Well, like the guy said before, it sounds like you've
pretty much already made up your mind.
I don't use heredocs everywhere, but when I have a fairly large block of
One way to get around having to edit backslashes is to echo using single
quotes. For example:
echo '' . $variable .
'';
-Original Message-
From: Greg Donald [mailto:[EMAIL PROTECTED]
Sent: Sunday, July 06, 2003 3:48 PM
To: Sparky Kopetzky
Cc: PHP General
Subject
Hi, again!!
I'm looking for opinions as to which is better/faster, print or heredoc.
print makes the code layout look nice and eazy to debug, where heredoc IS faster but
makes the code look like a nightmare with everything jammed against the left side of
the code. I'm pretty picky about what lo
> I'm looking for opinions as to which is better, print or heredoc.
I prefer heredoc mostly because I do not enjoy editing html that is full of
backslashes. I build up the html and only output anything at the end. This
allows for custom compression, whitespace stripping, etc.
> print makes t
Hi, again!!
I'm looking for opinions as to which is better, print or heredoc.
print makes the code layout look nice and eazy to debug, where heredoc IS faster but
makes the code look like a nightmare and I'm pretty picky about what looks good.
Robin E. Kopetzky
Black Mesa Computers/Internet Ser
Hi,
> I would bet that it would be easier to come up with a browser that
> supports 100% of the HTML standard (which is IMHO the minimum the
> browser HAS to support) than it would be to come up with a browser that
> supports 100% of the nonstandard. :)
>
> As the old saying goes two wrongs d
On Wed, 2 Jul 2003 14:23:23 -0700, Jim Lucas wrote:
>well, tell me. What browser follows the standards 100% ??
I would bet that it would be easier to come up with a browser that
supports 100% of the HTML standard (which is IMHO the minimum the
browser HAS to support) than it would be to come up
1 - 100 of 213 matches
Mail list logo