0
votes
3answers
52 views
PHP preg_replace text variable
I want to echo a string with the variable inside including the ($) like so:
echo "$string";
I dont want it to echo the variable for string, I want it to echo '$string' itself, a …
0
votes
1answer
20 views
Ignore data within a certain set of characters with PHP
Not sure what this is called, but is there a way I can pull data from a file, echo it, but ignore data within a certain set of characters?
<?php
echo file_get_contents('test.tx …
0
votes
5answers
57 views
PHP Echo text Color
How do I change the color of an echo message and center the message in the PHP I've written. The line I have is:
echo 'Request has been sent. Please wait for my reply!';
0
votes
4answers
71 views
date in shell script
Hi All,
I have a shell script with a lot of echo statements. I want to prefix each line of output with the time/date.
So, I replaced every
echo "Some text1"
echo "Some text2"
…
1
vote
4answers
102 views
Echo SQL query on new page with PHP
I know this is probably a really amateur question, but I can't figure this out and I don't know much about PHP or MySQL.
So I have a really simple script that basically allows a u …
0
votes
4answers
63 views
include/echo output of PHP
I got two projects running, both written in PHP. Now I want to merge these two projects. The first project is a CMS and on a specific page i will display the contents of the other …
2
votes
2answers
101 views
What’s the difference of echo,print,print_r in PHP?
I use echo and print_r much,almost never use print.
I feel echo is a macro,and print_r is alias of var_dump.
But that's not the standard way to explain the difference.
1
vote
4answers
87 views
PHP Japanese Strings getting set to ????????????
I have a PHP file with one simple echo function:
echo 'アクセスは撥ねりません。';
but when I access that page i get this:
????????????
Can someone help me?
I also have my page encoding s …
6
votes
6answers
171 views
php echo vs open&close tag
Just to clarify: The issues "echo vs print" and "double quotes vs single quotes" are perfectly understood, this is about another thing:
Are there any reasons why one would prefer: …
0
votes
2answers
294 views
shell script printing contents of variable containing output of a command removes newline characters
I'm writing a shell script which will store the output of a command in a variable, process the output, and later echo the results. Here's what I've got:
stuff=$(diff -u pens tape) …
3
votes
8answers
1k views
Easiest way to echo HTML in PHP?
I want to conditionally output HTML to generate a page, so what's the easiest way to echo multiline snippets of HTML in PHP 4+? Would I need to use a template framework like Smarty …
1
vote
2answers
391 views
PHP echo vs PHP short tags
Are they equal in safeness? I was informed that using
<?=$function_here?>
was less safe, and that it slows down page load.
So I am now strictly biased to using echo.
I ju …
0
votes
2answers
53 views
Problem with echo $PATH
I am working on bash shell
When I type echo $PATH on $ prompt I get the value of path environment variable as
/opt/bin:/usr/local/bin:/usr/bin:/bin:/usr/games
I am creating my ow …
3
votes
2answers
135 views
disabling windows ability to respond to ping request
im writing an application destined to accept icmp echo request, and respond icmp echo reply by its criteria.
problem is, windows xp takes over the received ping, and quickly replie …
10
votes
2answers
165 views
If I echo a statement and no one hears it, does it ever get echoed? (PHP cron job question)
So I have a script that I debug with a bunch of echo statements. This is run every 3 minutes on my server by cron, and I sometimes leave the echo statements in there. They're not g …
