Sagar C Nannapaneni wrote:
I'm calling a php script with tag
for ex: http://localhost/test.php?img=asfd";>
and the test.php is as follows...
test.php
---
Theres no problem with this..its working fine. But i want to return some
text(or Html)
Steve wrote:
I am using GD image function with PHP (PHP 4.3.9 on RedHat 9). Today I
found that for all images I have created so far (using the ImageGIF()
function), there is a temporary file in /tmp with that image. The name
of the temp file is a 6 character combination of letters and digits,
e
Mulley, Nikhil wrote:
Hi All,
My Question is that , I have an HTML page , how can I make it as
Hyperlink instead of a Form Button
When user clicks on that button , it must be a href link .
Please guide me.
Thanks,
Nikhil.
.
first of all, i dont see anything regarding php in this question.
http:
blackwater dev wrote:
How can I take a string and create an array?
Example,
A12B05C45D34
I need to split this into chunks of three A12,B05,C45..etc?
Thanks!
|
use str_split()
if you dont have php5, you can use the following code:
|
if (!function_exists('str_split')) {
function str_split ($s
Daniel Schierbeck wrote:
I've been looking at php.net, but i couldn't find what i'm searching for.
I have a numeric array, and i'd like to get the highest key. E.g.
$arr = array(3 => "foo", 7 => "bar", 43 => "foobar");
What i want is a function that, in this case, returns 43.
Daniel Schierbeck
Michael Mao wrote:
Thanks John.
Found what I'm looking for:
Function str_split()
to make it php4 compatible you can use this function:
|
if (!function_exists('str_split')) {
function str_split ($str, $size = 1) {
$arr = array();
for ($i = 0 ; $i < strlen($str) ; $i += $size) {
$
Greg Donald wrote:
On Thu, 2004-09-09 at 15:25, Jim Grill wrote:
exec("stty -icanon min 0 time 0");
Nice.
I suspect 'phpSnake' will appear on freshmeat in a couple days.
:)
thats more or less what we are trying to do. =)
pong as a start at least.
doing it all over again, this time php-st
I'm currently working on some stuff with php-cli and got a few problem.
I want to be able to read one single character from stdin via keyboard,
ie. pressing a button.
It works fine if I use enter as newline afterwards, but I would like to
do it without pressing enter.
Thus, I have to turn off buf
8 matches
Mail list logo