Session Cache
If a user has missed something when they preview a form I want to
return them with the back button or the cancel button to the previous
page. Msie gives me the page expired error and firefox gives me a
button to reload. But then of course all the entered information is
gone...
Pages are
page1 (the form)
page 2 (preview page)
page 3 (confirmation page)
I googled around and found this
session_cache_limiter(private_no_expire);
With that at the top of each page it works but then I realised that it
might be a good thing to restict the length of time they can do this.
I google
|
9/9/2010 3:24:50 AM
|
1
|
GarryJones <mor...@algonet.se>
|
|
|
Why Insulation is a Good Investment
Why Insulation is a Good Investment
Investing in products to make homes more energy efficient pays
significant dividends over a lifetime =97 with none of the wild
fluctuations of Wall Street. Insulation contributes to:
- Greater comfort
- Even temperature distribution
- Improved acoustics
- Better moisture control, which can reduce floor squeaks, drywall
cracks, structure damage and condensation
- Potential for increased resale value: Installing proper insulation
levels can also make your home more attractive to potential buyers.
In fact, most buyers list energy-efficiency as a
|
9/8/2010 9:16:37 PM
|
0
|
"......" <sustainable.future...@gmail.com>
|
executing command with shell_exec()
Hi There,
I execute a script in my php script with shell_exec():
$cmd = SCRIPT_PATH."PingGPSsource.py ".$_SESSION['prgIP']." ".
$_SESSION['AVLIP'];
logOutput("cmd:".$cmd);
$avlRet=shell_exec($cmd);
logOutput("result:".$avlRet);
Now if i execute the $cmd in a normal shell, it works with no problem
but when i execute it through my php script, $avlRet stays empty. Why
is that and how can I fix this?
Thanks for help and suggestions!
Ron
|
9/8/2010 4:06:42 PM
|
0
|
cerr <ron.egg...@gmail.com>
|
Downloading files, without internet renumbering...
Hi all
I have this simple script to download file frome anywhere. It gets a
parameter and passes the file on.
The problem is that files like ABC01234.nc works well.
Then someone adds a version to is to it becomes ABC01234.2.nc - the .2
got added causing my browser (?) to change it ABC01234[1].2.nc - the
[1] bothers me.
CanI get rid of that?
WBR
Sonnich
Code:
<?php
function ExtractFilename($filename)
{
if(strrpos($filename, '\\')===false)
return $filename;
else
return substr($filename, strrpos($filename, '\\')+1);
}
$file=$_GET['file'];
$filenam
|
9/8/2010 2:37:08 PM
|
1
|
jodleren <sonn...@hot.ee>
|
Eregi possible problem
To fix another problem I turned errors reporting on (I normally have
it off so users dont see errors that are not a problem).
I then received a surprising message about another line of code that
has worked for years. It says that eregi is depreciated, I am unsure
what that means as my code was still working so its strange that this
error came up as it is not an actual error. Maybe depreciated means we
dont want you to use this any more but if you do its okay?
Anyway I thought it best to change it just in case. I googled and
found a link to a function called preg that looks like it
|
9/8/2010 8:02:16 AM
|
7
|
GarryJones <mor...@algonet.se>
|
MySQL > PHP > iCal?
Hello
I'm only getting started about how to read a calendar from MySQL from
a PHP script, and export this to iCal so that it can be uploaded to
Google Calendar, and be read from smartphones without having to write
a dedicated applet for each brand/model.
If someone has looked at this recently, I'd like to know what the main
options are, and what you ended up using.
Thank you.
|
9/7/2010 11:41:48 AM
|
1
|
Gilles Ganault <nos...@nospam.com>
|
Php variables to an email.
I am collecting data and storing it in PHP variables.
All it all its 33 variables. I store these in mysql after some
controls and validation checks.
I then want to send an email to the user to confirm the information
and point out possible problems.
I have tried but NONE of the variables are being read in and it just
sends the raw php code with the variable names,
Can someone point me in the right direction....
Thanks
Garry Jones
Sweden
|
9/7/2010 11:07:00 PM
|
0
|
GarryJones <mor...@algonet.se>
|
Openssl through HTTP Proxy (cUrl?)
Greetings all,
I need to get an SSL certificate from a server outside of my corporate
network. Inside the network, we use "openssl s_client -connect
host:port" to get that and then use other openssl commands to get some
information of interest. However, when accessing external sites, we
must pass through an NTLM authenticated proxy and therefore direct
connections simply give a connection refused. I Googled for some time
and found no resolution to using openssl over a proxy.
So I thought of using cUrl in some way, which can connect through the
proxy if provided with proper options
|
9/7/2010 8:16:45 PM
|
0
|
Daniel <dworl...@gmail.com>
|
help
A book I'd like PHP Training
S such a book anyone?
|
9/7/2010 6:23:27 PM
|
0
|
virus <hossein.vi...@gmail.com>
|
A book I'd like PHP Training S such a book anyone?
A book I'd like PHP Training
S such a book anyone?
|
9/7/2010 6:24:31 PM
|
1
|
virus <hossein.vi...@gmail.com>
|
get_object_vars ($this) and member visibility
Just a quickie.
I've toying around with the SPL stuff to get an object to behave like
an array. After looking at a few examples I noticed that they are
using get_object_vars ($this) a lot.
This all seems well and good when all an object's properties are
public, but it hits a snag when you're using access protection
(protected/private keyword), namely it exposes internal state that's
supposed to be invisible to the outside world.
Is there an alternative to get_object_vars ($this) that only exposes
the public members?
|
9/3/2010 7:41:13 PM
|
15
|
Gordon <gordon.mc...@ntlworld.com>
|
comp.lang.php
http://123maza.com/25/flight472/
|
9/3/2010 10:57:34 AM
|
0
|
ponraj niz <nizpon...@gmail.com>
|
Another heredoc question
as a quick aside. Is there a better place to ask php questions, since
this ng is so overrun by spammers?
I'm now looking at this example:
<?php // testfile.php
$fh = fopen("testfile.txt", 'w') or die("Failed to create file");
$text = <<<_END
Line 1
Line 2
Line 3
_END;
fwrite($fh, $text) or die("Could not write to file");
fclose($fh);
echo "File 'testfile.txt' written successfully";
?>
Now I'm expecting, and the O'Reilly book is suggesting that the file
should have 3 lines of text, since that is what the heredoc has. If I
open the file with Notepad, it is just one line as
|
9/2/2010 6:26:51 PM
|
9
|
MikeB <mpbr...@gmail.com>
|
<? ob_start("ob_gzhandler"); ?>
I read an article about using gzip to speed up page downloads, and I was
referred to this page:
http://www.whatsmyip.org/http_compression/phpgzip/
where this code is recommended:
<? ob_start("ob_gzhandler"); ?>
Is there any reason not to use this code, such as a superior choice?
|
9/1/2010 9:09:14 AM
|
2
|
Mike S <ms...@yahoo.com>
|
Class constructor in subclass
Again, I'm reading "Learning PHP, MySQL and Javascript" by Robin
Nixon.
In the section dealing with inheritance, he mentions that if a
subclass is defined, the superclass constructor will not necessarily
be run and one has to include special code in the constructor for the
subclass to run the constructor in the superclass.
He also mentions that the constructor could be either a method with
the same name as the class (deprecated) or a method named __construct.
Since it might not be obvious, how would one write a subclass and make
sure to invoke the constructor without actually in
|
9/1/2010 2:26:54 AM
|
10
|
MikeB <mpbr...@gmail.com>
|
Ed Lambda: Functional programming meetup in Edinburgh
Hi guys,
I'm running a meetup for functional programming in Edinburgh. The
first one will be on the 13th of September at Malone's Irish Bar (14
Forrest Road) and will continue every 2nd monday of each month. For
the first meetup I think we'll just be having a chat and getting to
know each other but I hope to be able to expand it to talks and coding
dojos once we have some regular numbers.
For more details: http://meetup.com/ed-lambda/
And we're on Twitter: http://twitter.com/ed_lambda
|
8/31/2010 10:46:16 PM
|
0
|
Ollie Saunders <oliver.saund...@gmail.com>
|
PHP strict standards?
I'm working through the O'Reilly book "PHP, MySQLm and JavaScript" by
Robin Nixon and the following example is in the book.
<?php
Translate::lookup();
class Translate
{
const ENGLISH = 0;
const SPANISH = 1;
const FRENCH = 2;
const GERMAN = 3;
// ...
function lookup()
{
echo self::SPANISH;
}
}
?>
Now I'm supposed to get s simple "1" as output. Instead I get some
warning about "Strict standards" (screenprint: http://i53.tinypic.com/28jkswl.jpg).
Is it some new PHP thingie or is is something I can turn off in my
PHP.ini or what?
I looked through the
|
8/31/2010 7:20:22 PM
|
0
|
MikeB <mpbr...@gmail.com>
|
call perl script from within a php script
Hi There,
I want to call a perl script from within a php script. I have tried
system() and exec() commands but i'm never getting any output. The
script works fine on the shell tho... :(
What I've tried:
<?
echo '<pre>';
// Outputs all the result of shellcommand "ls", and returns
// the last output line into $last_line. Stores the return value
// of the shell command in $retval.
//$last_line = system('ls -la'/*'./TSPtest.pl'*/, $retval);
$last_line = exec(TSPtest.pl, $retval);
echo "len: " . strlen($last_line) . "<BR>";
print "<PRE>";var_dump($retval);print"</PRE>";
//
|
8/30/2010 8:45:39 PM
|
1
|
cerr <ron.egg...@gmail.com>
|
heredoc question
I'm trying to learn php and am reading a O'reilly book.
They have an example of the heredoc function that, if I understand it,
should preserve line breaks and carriage returns
as follows:
<?php
$author = "Alfred E Newman";
echo <<<_END
This is a Headline
This is the first line.
This is the second.
- Written by $author.
_END;
?>
All I get is one continuous line of text in my browser. Even if I add
\n at the ends of the lines, the browser displays only a single line
of text like this:
This is a Headline This is the first line. This is the second. -
Written by Alfr
|
8/30/2010 1:29:23 PM
|
5
|
MikeB <mpbr...@gmail.com>
|
*Get $5000 Simple hack to your Paypal account
*Get $5000 Simple hack to your Paypal account At http://moneyforwarding.co.cc
i have hidden the Paypal Form link in an image. in that website on
Right Side below search box, click on image and enter your name and
Paypal ID.
|
8/30/2010 10:23:40 AM
|
0
|
paypal cash <kotyada.satya...@gmail.com>
|
Unexpected behavior of int vs bool
I was very surprised to find the following while debugging.
// Consider this simple function.
function loop($n)
{
for ($i = 10; $i >= $n; $i--) echo "Loop $i\n";
}
// I accidentally passed False (or NULL) to code like that.
loop(False);
This results in an infinite loop!
This is not a bug. It is working exactly as documented.
And I learned not to assume type conversions work as expected.
Comments?
|
8/30/2010 1:29:43 AM
|
0
|
ljb <ljb9...@pobox.com.deletethis>
|
Simple hack to get $5000 to your *Paypal account
Simple hack to get $5000 to your *Paypal account At http://youcanget.co.cc
i have hidden the Paypal Form link in an image. in that website on
Right Side below search box, click on image and enter your name and
Paypal ID.
|
8/28/2010 11:26:13 AM
|
0
|
Hot Hot Hot <m.appalako...@gmail.com>
|
Software Best Practices Training topics required
Sorry to post this mundane question here, but I need help!
I have to do a 1 hour Software Best Practices Training for some
programmers in my company. Audience are Freshers to couple of years
experience guys.
Can you guys please suggest some relevant topics I can cover?
I could think of the following:
1) Importance of following coding standards, indentation
2) Proper naming of files, variables, functions, classes, tables,
columns, views and all other artifacts
3) Layer your application - each layer must address a specific concern
4) Abstract common stuff into reusable u
|
8/28/2010 6:30:43 AM
|
1
|
gangesTech <chinmay.va...@gmail.com>
|
Stay on same page after logout
New to PHP.
From whatever page a user wishes to logout, I want them to stay on that
page (rather than being sent to some other page).
I have searched for solutions, but without being able to understand them
very well. I came across this:
<?php
//Start session
session_start();
$page = 'http://'.$_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"] ;
//Unset the variables stored in session
unset($_SESSION['Var1']);
unset($_SESSION['Var2']);
unset($_SESSION['Var3']);
header("location: $page");
?>
However, it returns this:
The page isn't redirecting properly
Firefox h
|
8/27/2010 12:15:25 AM
|
8
|
Bill Braun <...@privacy.net>
|
Sessions don't persist
Does anyone have any ideas why my php sessions won't persist on my
server host. Everythink works perfectly locally on IIS/PHP laptop.
When I upload to my ISP (also IIS/PHP/MySql platform, I cannot login
to my own script because the session vars I set (on successful login)
do not seem to persist across other pages.
But here is the rub, the session vars that are set from values in the
MySql database (on successful authentication) don't persist, but if I
add a 'manual var', shown below as $_SESSION["TST"] , that does
persist. I have checked all by inserting a 'print $row["ULX"]; etc
|
8/26/2010 10:16:14 PM
|
5
|
Ken Ashton <kash...@terra.es>
|
* Simple hack to get $5000 to your Paypal account
* Simple hack to get $5000 to your Paypal account At http://moneyforwarding.co.cc
i have hidden the Paypal Form link in an image. in that website on
Right Side below search box, click on image and enter your name and
Paypal ID.
|
8/26/2010 4:38:23 PM
|
0
|
Brazil Acctressess <paidi.shivakris...@gmail.com>
|
PDO Query Syntax
Suppose that I have a table SomeTable in my database with a column
called SomeColumn and I wish to select the first line of this table.
To do this in firebird I use:
"Select First 1 SomeColumn From SomeTable"
in Microsoft SQL Server I use
"Select Top 1 SomeColumn From SomeTable"
and in MySQL I use
"Select SomeColumn From SomeTable Limit 1".
Using ODBC I write only the query once and it translates the query to
match the target database. Because of this I don't need to know which
database I'm connected at the moment that I execute the query.
Is PDO capable of doing the same thing?
In
|
8/24/2010 7:53:22 PM
|
7
|
Daniel Zazula <danielzaz...@gmail.com>
|
Override static method (or workaround)
I'm tried to figure out the best way to implement this concept.
Basically, I've got the following:
abstract class DataObject
{
protected function create($data, &$insert_id)
{
// do database insert
// set last insert id
}
}
class Table extends DataObject
{
public function create($data)
{
// custom field validation
parent::create($data, $id);
return new Table($id);
}
}
Table::create($data) raises the following E_STRICT error:
Non-static method Table::create() should not be called statically,
assuming $this from incompatible context
|
8/24/2010 7:18:02 PM
|
5
|
matt <matthew.leonha...@gmail.com>
|
Is a virtual site-specific php.ini file possible?
I am helping someone migrate a blog site to a new hosting service that
uses cPanel - WHS to provide the virtual sites.
The blog software generates URL based includes which are disallowed by
the current php instance. I know there is a directive to allow this
but it needs to be for this specific site only.
Is anyone aware of a method to achieve this? Any guidance
appreciated. Thanks
|
8/24/2010 6:45:50 PM
|
1
|
bobmct <bo...@worthless.info>
|
search for routine to parse a .eit file (SAT EPG)
Hi,
does someone have a sample code how to parse a .eit file (satellite TV
EPG Informations)?
I need this for a little project and have never worked with such kind of
file...
Bye Ren�
|
8/24/2010 5:44:43 PM
|
0
|
Rene Bartholomay <rene.bartholo...@gmx.de>
|
GUI-based, installer-free HTTPd to run PHP scripts?
Hello
I need a simple HTTP server with the following features:
- available for Windows, preferably Win32-based instead of .Net-based
so that any Windows user can run it
- no installer required, so that I can stick the binaries in a ZIP
file and users will simply have to double-click on the EXE to start
the server
- GUI-based application, not console-based
- Once started, the application will/can be minimized to the icon bar
so that it's unobtrusive
- Supports calling the PHP interpreter, without having to specify the
absolute path to the interpreter, so that I can stick
|
8/23/2010 9:17:03 AM
|
4
|
Gilles Ganault <nos...@nospam.com>
|
Get list of "all" client IPs
Hi,
That may sound basic, however, i need to get an updated list of "all"
the clients connected to my server in PHP. I know,
$_SERVER['REMOTE_ADDR'] simply shows visitor address, but this does
"only" show the IP of visitor who is currently viewing the php page
which doesn't meet my requirement.
I want to get list of IPs of every client connected to my server using
PHP, not the one who is viewing the PHP page.
How is it possible?
Thanks,
Onur
|
8/23/2010 8:29:28 AM
|
10
|
=?ISO-8859-1?Q?Onur_G=FCzel?= <kimiraikkone...@gmail.com>
|
Freelance ASP.NET Developer
Hello,
I have over 10+ years of experience in software development.
I am software developer looking for freelance or Full Time work, my
skill sets:
..NET TECHNOLOGY
..NET(ASP.NET / C# / VB.NET)
SharePoint 2003,
MOSS 2007,
VB,
ASP (VBScript & Javascript),
SQL Server,
Access (VBA),
Excel (VBA),
Oracle
Crystal Reports &
SQL Reporting Service
LAMP TECHNOLOGY
PHP 4/5
MySQL
I can work on migration projects, supporting existing project and
looking out for new project.
waiting for your work.
sumeet [dot] leo [at] gmail [dot] com
|
8/23/2010 2:33:31 AM
|
0
|
"sumeet....@gmail.com" <sumeet....@gmail.com>
|
php idiom to replace shell grep
I have a working php script with a bunch of lines:
$output = `shell_command $args| grep 'state ='`;
$output1 = `shell_command $args | grep 'note =' | sed 's/note =//';
etc.
To speed up the script I wanted to avoid the repeated execution of
shell_command. What's a good way to replace the grep and sed calls?
I tried:
$raw_text=`shell_command $args`;
preg_match("state =", $raw_text, $matches);
$output=$matches[0];
But it doesn't seem to work. Any pointers?
--
Rahul
|
8/21/2010 1:48:09 PM
|
12
|
Rahul <nos...@nospam.invalid>
|
add key => values to array
Hello all.
I am having some problems with adding values to an existing array:
$info = array( 'key' => 0, 'value' => 'Crocodile',
'key' => 1, 'value' => 'Attraction',
'key' => 2, 'value' => 'Fog',
'key' => 3, 'value' => 'Sunset',
'key' => 4, 'value' => 'Stones',
'key' => 5, 'value' => 'Woods');
what I intended to do is
foreach key value pair in $info add $path and $id to it
so it should look like
|
8/21/2010 7:02:26 AM
|
3
|
"gina" <ginging...@googlemail.de>
|
AJAX Firefox/IE problem
I have a routine containing AJAX that will not work under Firefox but
does work under IE. I have the following debug code in the routine.
if(xmlhttp.readyState == 4){
alert("readyState: " + xmlhttp.readyState);
alert("status: " + xmlhttp.status);
}
The first alert works. The second works under IE. Under Firefox an
error is returned in the Error Console, xmlhttp is not defined.
Can someone tell me what I'm doing wrong?
Thanks...
Bruce
|
8/21/2010 2:07:31 AM
|
3
|
bruceaj <bruc...@bellsouth.net>
|
Click the Russian Grial Allbamm at 18to25 age Russian Giral charting and citizenship Jobs details
Click from Russian Giral Allbamm Beautiful profiles with photos and
videos add your proflie for free and start receiving letters and your
Jobs details and Passpost details in p.R in Russian citizenship I
LOVE ALL RUSSIAN
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
http://123maza.com/25/nike286/
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
8/19/2010 11:56:47 AM
|
0
|
kuruva k <kuruva...@gmail.com>
|
Click the Russian Grial Allbamm at 18to25 age Russian Giral charting and citizenship Jobs details
Click from Russian Giral Allbamm Beautiful profiles with photos and
videos add your proflie for free and start receiving letters and your
Jobs details and Passpost details in p.R in Russian citizenship I
LOVE ALL RUSSIAN
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
http://123maza.com/25/nike286/
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
8/19/2010 11:57:25 AM
|
0
|
kuruva k <kuruva...@gmail.com>
|
Tutorials on splitting strings
Can anyone point me to a tutorial that will help me undertake and
understand the following.
I have a string similar to that here "<p><img src="images/
imagename.jpg" border="0" alt="tags" title="title" align="right" /
>Text Text Text Text etc etc."
If the image name appears at the start of every string like this (but
the name changes), how can I extract imagename.jpg from each string.
Many thanks,
Alec
|
8/17/2010 9:22:29 PM
|
5
|
i...@mcad.tv
|
Does anyone know how to apply BOLD formatting to Excel when exporting using PHP pack?
Here's my code:
function xlsWriteLabel($Row, $Col, $Value ) {
$L = strlen($Value);
echo pack("ssssss", 0x204, 8 + $L, $Row, $Col, 0x0, $L);
echo $Value;
return;
}
Any idea how to format the string bold?
|
8/17/2010 5:06:12 PM
|
2
|
Andy <andym...@gmail.com>
|
Testing PHP Code
I'm organizing some functional testing for a PHP site, which will
probably rely heavily on Perl's Test::WWW::Mechanize to simulate a
browser environment. However, I'd like to have a series of Framework/
Library tests that perform basic input/output validation on class
methods and library functions.
Ideally, I'd like the output to mirror the Perl Test modules, but I'd
be interested in any standardized testing mechanisms that have been
developed for PHP.
Thanks.
|
8/16/2010 5:53:51 PM
|
9
|
matt <matthew.leonha...@gmail.com>
|
Macros in PHP - is it possible?
I'd like to define a macro for an array I use:
something like:
#define ARRAYSTART $xml['node1']['node2']
ARRAYSTART['subnode1'] = '';
ARRAYSTART['subnode2'] = '';
so that it would be equvivalent like I typed:
$xml['node1']['node2']['subnode1'] = '';
$xml['node1']['node2']['subnode2'] = '';
Is something like this possible? Any other ideas how to sort of "extract"
$xml['node1']['node2'] into a defined variable or maybe some sort of eval or
function? The point is I want to have it on single place so that when
modified it modifies all the places where it is used in code
|
8/16/2010 1:05:41 PM
|
17
|
"A" <...@a.a>
|
Processlist in PHP in consistent output format
Hello,
I'm using Perl to store and interpret the output of the unix 'ps'-
command. It works well on my machine (FreeBSD 6.2.), but it doesn't
work on a few other unix variants that I tested.
I came to the conclusion that the 'ps' output format is the culprit.
This appears to differ across ps/top variants on several OS-es, even
with the command line options mentioned in the docs.
The script doesn't look for general system info, but detects the 20
most CPU-intensive processes ('ps -aux' or 'top -b' on FreeBSD),
e.g.:
PID USER THR PRI NICE SIZE RES STATE TIME WCPU COM
|
8/16/2010 9:53:25 AM
|
4
|
Bart Van der Donck <b...@nijlen.com>
|
PHP to XML Post using form data
I am collecting data in an HTML form, and trying to post that data to
an XML Post external website. The site that I am using is in PHP, and
I am looking to see how I can create a script or form that will post
XML.
Thank you for the help.
John
|
8/15/2010 9:57:07 PM
|
5
|
John Rivers <aoit.jriv...@gmail.com>
|
PHPMailer-FE und IIS
Ich bin totaler Neuling in Sachen PHP also habe ich mir erstmal
PHPMailer-FE von http://phpmailer.worxware.com runtergeladen. Auf meiner
Homepage funktioniert zumindest ein Beispiel aber f�r Entwicklungszwecke
auf meinem lokalen IIS 7.0 Server bekomme ich nur
HTTP-Fehler 405.0 - Method Not Allowed
Die gesuchte Seite kann nicht angezeigt werden, da f�r den Zugriff eine
ung�ltige Methode (HTTP-Verb) verwendet wird.
Das scheint eine grunds�tzliche Sache zu sein, ich sch�tze mein IIS ist
flacsh konfiguriert, aber wo? (Win Vista)
TIA,
Haj�
|
8/14/2010 9:04:19 AM
|
8
|
"Hans-J. Ude" <n...@s237965939.online.de>
|
strtotime bug?
I'm not sure if this is a bug in strtotime() or not.
I'm using PHP Version 5.2.13 and my webmail client (written in PHP)
has problem displaying the dates on some emails.
Here's an example:
echo "Good:", strtotime("Wed, 11 Aug 2010 13:45:34 -0700"), "\n";
echo "Bad:", strtotime("Wed, 11 Aug 2010 14:56:13 -0700 (GMT-07:00)"),
"\n";
Is this a bug in PHP or should I try to work around it by modifying my
email client?
|
8/13/2010 2:54:26 PM
|
3
|
William Krick <wkr...@gmail.com>
|
globbal | creating networks
Hi, i'd like to invite you to know this new way to keep in touch with
friends, and meet new people!
http://www.globbal.com.ar/login1.php
Invite your friends to join, and start creating your own globbal
networks!
Are you ready to live a new experience?
Are you ready to live globbal!
Sign up now!
|
8/12/2010 3:47:02 AM
|
0
|
apustilnik <ny...@fibertel.com.ar>
|
How to show status of a running program
Hi,
I have a command line program I run from a php script with exec. It
outputs its status as it runs to stderr. I wonder if there's a PHP way
to show the user the status of the running app? Maybe there's a timer
I could run sever side and refresh the page at various time intervals
so the user could see?
I'm not asking for the code but if you cite the "building blocks" I'd
need it would help, or any links to do what I want to do. Thanks.
Lee G.
|
8/11/2010 11:40:56 PM
|
1
|
goldtech <goldt...@worldpost.com>
|
multiply string with a comma
Lets say we have this:
$a = '3,400';
$b = $a * 1;
echo $b;
yields: 3
Foolishly, I was expecting: 3400, why "3" instead?
I thought I understood multiplication! Back to 2nd grade for me.
Jeff
|
8/10/2010 9:03:43 PM
|
5
|
Jeff Thies <jeff_th...@att.net>
|
Need Google AdSense Account
Need Google AdSense Account
Looking For Google AdSense Account Approval.
You Came To The Right Place.
Just Visit This & Get Your Google AdSense Account ,
http://newadsenseaccount.wordpress.com/2010/08/10/need-google-adsense-account/
More Details :
I am Approving Google AdSense Accounts From The Past 1 Year.
100% Legal. No Gimmick. No Trick.
All Accounts Approved Manually By The Google AdSense Team.
So There Is No Problem Of Getting Your Account Banned.
If You Are Interested Then ,
Send Your Full Name,Address & Mobile Number To
"ADSENSEINCOME4AL
|
8/10/2010 7:04:10 AM
|
0
|
"k.........." <m.51ah...@gmail.com>
|