"Mike Smith" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I am starting to get a handle (I think) on OOP. I was wondering if
> anyone would care to comment on what I think I understand:
>
> For simplicity's sake class.php contains AddItem() and DisplayItems().
> Since submitting f
BTW - I misquoted - the example below was in the "PHP Cookbook" (page 173) -
not in the "MySQL Cookbook" - my apologies...
"Geoffrey Thompson" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I would prefer not having to use script - is there
w about simply:
>
> echo "
>
> window.top.main.location= '<a href="http://localhost/phase1/report.php">http://localhost/phase1/report.php</a>'';
> ";
>
> ?
>
> "Geoffrey Thompson" <[EMAIL PROTECTED]> w
One approach:
for ($i=0; $i < sizeof($xArray); $i++) {
if ($xArray[$i] == $yArray[$i]) {
new_yArray();
break;
}
}
"Wknit" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I am a novice, I am sure this is pretty simple...
>
> I have two arrays of integers, equa
I was only able to find one reference to targeting a named frame on a
redirection, in the "MySQL Cookbook" by O'Reilly. According to the book,
this should work:
header('Window-target: main');
header('Location: http://localhost/phase1/report.php');
But, alas, it seems to only load up the curren
I posted this once under another subject, but didn't get any responses. I'm
stuck on this, and could really use some help.
I have the following php code for downloading a file to the user via the
browser:
// Open csv file.
$fp = fopen("fileOnServer.csv", "r");
// Set headers for csv downl
All:
I have the following php code for downloading a file to the user via the
browser:
// Open csv file.
$fp = fopen($fileName, "r");
// Set file name.
$dwnldName = "report";
// Set headers for csv download.
header("Content-Type:application/csv");
header("Content-Disposition:attac
7 matches
Mail list logo