Ask a Question related to PHP Development, Design and Development.
-
Brandon Lamb #1
Is there a way to assign multiple variables a single value on a single line?
i tried
$f1, $f2, $f3 = '1';
and
list($f1, $f2, $f3) = 1;
neither work... second obviously cuz its looking for an array on the right
side, correct?
Right now i have ot build a for loop to assign the values
Brandon Lamb Guest
-
Quering rows in a table and outputing on single line
Hi, I would really appreciate any help with the following: I want to use a single query to extract the data below (this is a small sampling of... -
split single pdf doc to many based on line/column
Can anyone share with me a method of splitting a single PDF document into multiple PDF documents based a value in a particular location(i.e.,... -
form: single line -- multiple text boxes -- one typing field - how?
please excuse my ignorance. am a newbie. I saw a fillable form, that shows:- a single line with multiple text boxes for entering each letter of a... -
HOW-TO: Enable whole DataGrid in edit mode, instead of a single line
I havent tried this so its only a suggestion... data bound) the Textboxes.Readonly = False Set Textboxes.Readonly = true Not dificult, but a... -
Background Color change on a SINGLE line of text.
Thanks, but that won't work for what I'm doing. I'm creating a user populatable multi-select field. If there are a large number of options both... -
Janwillem Borleffs #2
Re: Is there a way to assign multiple variables a single value on a single line?
Brandon Lamb wrote:
$f1 = $f2 = $f3 = '1';> i tried
>
> $f1, $f2, $f3 = '1';
> and
> list($f1, $f2, $f3) = 1;
>
> neither work... second obviously cuz its looking for an array on the
> right side, correct?
>
JW
Janwillem Borleffs Guest



Reply With Quote

