xcept better in my view. Certainly far
more feature-rich for PHP scripting.
Unless I'm missing some serious drawback, it's the best editor for web work
I've found!! Works on Windows. Wish they had a Linux version.
Best,
Daniel
--
PHP General Mailing List (http://www.php.net/)
To
rn.to/quote (german) http://quote.6x.to (english)
Homepage: http://www.digitalprojects.com | http://www.iso-top.de
iso-top.de - Die günstige Art an Linux Distributionen zu kommen
Uptime: 3 days 18 hours 20 minutes
--
PHP General Mailing List (http://www.php.net/)
To
Anybody know of any good project management scripts? Nothing too bloated.
Just a good simple way to organize projects and groups remotely. I've found
phpGroupware to be unwieldy and slow.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED
On Tuesday 27 July 2004 08:33 am, Vern wrote:
> Actually it's a netwotl printer and in order to print the job I need to
> type the following on the box:
>
> lpr -P hp1300n myfilename.txt
>
> So I'm not exctaly sure how I can do that
This works great for me. Except that I use lp -d printername
On Tuesday 27 July 2004 03:54 pm, Edward Peloke wrote:
> My web host recompiled php with the freeTDS library for me so that I can
> use the php mssql extensions but it still doesn't seem to work. He has
> told me that I can change the configuration file...what needs to be done?
Just guessing her
I'd like to make a few changes here to hopefully answer the original question.
On Wednesday 28 July 2004 01:35 pm, Ed Lazor wrote:
echo "";
while ($record = mysql_fetch_array($results)) {
if ($_POST["record"] == $record["ID"]){
$SELECTED = " SELECTED ";
} else {
Ok, I figured I'd tackle this since I've been coding php for about 6
months now. And wouldn't ya know, I'm having problems with, what I
thought would be the easiest thing to code ever. Yeah well I get the
file to upload, and heck I can even take the file and display what text
was uploaded.
How
day, August 05, 2004 1:34 AM
To: [EMAIL PROTECTED]
Subject: Re: [PHP] File Uploading Issue
On Thursday 05 August 2004 13:42, PHP E-Mail List wrote:
> You don't have permission to access /directory uploaded
> to/renamed file.txt on this server.
What are the permission
On a server that is running PHP 4.3.6 I can use a link like this and the
accompanying javascript to get a popup window in my application. After
upgrading to PHP version 4.3.8 this no longer works. For some reason when you
click on this link now, it looks like it creates a new session which of
c
On Thursday 12 August 2004 10:32 am, James E Hicks III wrote:
> On a server that is running PHP 4.3.6 I can use a link like this and the
Please disregard this request for help, as the problem seems to be the nut
behind the wheel.
James
--
PHP General Mailing List (http://www.php.net/)
OK, so it wasn't the nut behind the wheel after all. I am still having
problems with sessions after upgrading to PHP 4.3.8. The test code below
works as expected on server equipped with PHP 4.3.6 and keeps the session
start time the same no matter what link you click on. However with version
4.
On Friday 13 August 2004 11:14 am, Andre Dubuc wrote:
> Hi James,
>
> Well for what it's worth:
>
> Your code in Test1 sets the paraemters -
> if(!$_SESSION['start_time']){
> echo("\n Session Reset");
> $_SESSION['start_time'] = time();
>
> yet when Test2 loads, you haven't called $_SES
On Friday 13 August 2004 01:14 pm, Torsten Roehr wrote:
> James, have you tried with manually calling session_start() and setting
> auto_start = 0? If not, please try this.
>
> Haven't followed your previous thread so please forgive me if I'm asking
> something you already wrote. Are you using cook
On Friday 13 August 2004 02:57 pm, Gerard Samuel wrote:
> I've read (at least on 2 occasions) that one can secure their forms, to
> ensure that the form came from the site, and not via a script kiddie.
> Not the method where one puts a graphic of random text to copy to the
> form, but via a hidden
On Thursday 02 September 2004 10:09 am, Michael Gale wrote:
> So if I try and store a variable that would be unique to each window it
> would get over written. Is this a configuration problem ?
>
It sounds to me like you need to turn off session.auto_start in your php.ini
file and call session_st
On Thursday 30 September 2004 10:18 am, [EMAIL PROTECTED] wrote:
> Thank you,
>
You can't expect that people in government know how to read! Much less think!
James
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Merlin wrote:
Hi there,
I am trying to strip some words from a sentence. I tried it with
str_replace like described here:
http://www.totallyphp.co.uk/code/find_and_replace_words_in_a_text_string_using_str_replace.htm
Unfortunatelly it does not work the way I want, because if I want to
replace t
Lee Chen wrote:
Thanks
I check the phpinfo, and my safe_mode is off.
This is my phpinfo
http://homepage.ntu.edu.tw/~b91401010/phpinfo().htm
It is just a copy, not on the server.(so it's html file, not a php file)
Thanks.
Looks like you need to check this in your php.ini file. Could be your
Emil wrote:
Hello!
Sorry if this is off topic. I'm making a php site where one can order
a kit and now I would like to mark the kits with bar codes generated
by the php script. I would also need some kind of bar code hardware
reader and some way for a computer to read the result from the bar
co
On Monday 19 April 2004 12:22 pm, Marco Schuler wrote:
> Hi
>
> I want to prevent the user to use the browser's back-/refresh-button in
> my multipage registration form (as well as in other forms). How can I do
> this?
>
If you look back in the archives of this list you will see the way that I did
This is the only way that I have been able to insure that the users can not
use any of the bad buttons (back,refresh,double-click submit). The
java-script solutions will only work for users that have java-script enabled.
I put the following in my authenticate.php which is included at the top of
On Thursday 13 May 2004 11:59 am, Ashley M. Kirchner wrote:
> Looking for a (open source) solution here: is there some way that I
> can convert an already existing HTML page to a PDF file, by means of a
> script (on a unix box)? What I'd like to do is have a button on all of
> our pages that,
On Monday 10 May 2004 05:20 am, Mario wrote:
> Anyways I was wondering if there is a way to upload through PHP without
> having "write" permission to "all". Is there a way maybe, for the script,
> to change permission to "write" before the upload and then take it off? or
> anything else I can do to
On Thursday 20 May 2004 11:35 am, Jay Blanchard wrote:
> At the command line type "which php" and it will return the full path to
> php. Modify your line in the crontab with the full path...
>
> 0 6 * * * /usr/local/bin/php
> /home/www/project/app_cron/follow_up_new_members.php
I always put the #!
On Monday 24 May 2004 04:04 pm, Chris W wrote:
> It sounds like this is for adding the date and time to file name for the
> backup but I can't figure out how it works.
Maybe an email to the phpMyAdmin list will get you an answer faster than in
here?
James
--
PHP General Mailing List (http://ww
On Wednesday 23 June 2004 03:32 pm, tommie ramirez.andujar wrote:
> Dear colleagues..
>
> I am new to mysql and I am trying to do the following, to create a php file
> that may contain some kind of form or survey and the data entered may be
> added to a database. Here's the code of the html form
>
On Thursday 08 July 2004 09:59 am, Harlequin wrote:
> I have a user registration form that asks new users to register. However,
> Do I post the MySQLconnection string in the page they are completing or in
> the later page that the data is posted to, or both...?
I don't think I understand your ques
On Tuesday 13 July 2004 04:57 am, [EMAIL PROTECTED] wrote:
> Hi there...
> My misses has just started a new job, but has got loadsa websites blocked,
> including hotmail.
> So I've decided to see if there's a php alternative, that I can code/steal
> etc...
>
> If I can host a series of php pages, t
Well I believe the problem is, This "person" claiming PHPEdit is better
than sex, just doesn't get any.
As I use PHPEdit and I'd still rather have sex! :)
Especially.if she was in a bikini!!!
-Original Message-
From: EE [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 14, 2004 12:56
On Thursday 15 July 2004 09:58 am, Robert Sossomon wrote:
> I was wondering if anyone knew of a way to log all GET and POST
> information being passed to a log file?
>
> Thanks,
> Robert
$DEBUG_DATA = $_SERVER['PHP_SELF']."\n";
while (list ($key, $val) = each ($_REQUEST)) {
if (is_array($_
On Thursday 22 July 2004 10:23 am, Tobias Brasier wrote:
> The problem is that when I run the page, the log files show that the page
> was accessed twice.
I would be looking for calls to the header() function or a meta refresh tag in
the header of this program. Maybe there is an include() file th
Nelson Carreira wrote:
James E Hicks III wrote:
Nelson Carreira wrote:
Yes, I've tried using both absolute and relative paths.
The system output is 0 when I execute, for example, "nvram show"
from the php. From what I know this output means success. Although
there
On Monday 02 February 2004 08:57 am, Angelo Zanetti wrote:
> HI all
>
> I have a page that has been written by someone else and when I run it and
> click on a button to valid the username and password to login it sends me
> back the same page with the following:
>
> Warning: Cannot modify header in
On Thursday 12 February 2004 08:26 am, Michal wrote:
> Great idea. Can I use a keyboard and bar code scanner together? How to use
> a keyboard, if i connect a scanner into a keyboard port?
>
> Michal
You use a thing called a wedge. It plugs into your keyboard port on your
computer. Then you plug
On Thursday 11 March 2004 10:47 am, Ian Firla wrote:
> I have a shellscript written in php that needs to connect to a mysql
> database. Everything I've been reading suggests that this cannot be done
> easily. Is this true?
I ain't never heard anything like this before. I do it all the time. Just
How do I get this to work? the input box is only showing
He said,
James Hicks
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
What does the code look like that is causing this error? I know I can turn the
error off but how do I fix the code that is causing it?
Warning: Unknown(): Your script possibly relies on a session side-effect which
existed until PHP 4.2.3. Please be advised that the session extension does
not co
ON['last_time'] = time();
>
> It's shorter and it will make the warning go away.
>
> -Rasmus
>
> On Tue, 23 Mar 2004, James E Hicks III wrote:
> > What does the code look like that is causing this error? I know I can
> > turn the error off but how do I fix t
On Tuesday 30 March 2004 12:33 pm, Mike R wrote:
> I am getting this error:
You came to the right place.
> Fatal error: Failed opening required
> '/home/sites/site111/web/news/settings/newsletter.settings.inc.php'
> (include_path='') in
include_path='' says that your php.ini does not have default
On Friday 09 April 2004 02:14 pm, Daniel Clark wrote:
> > Another question envolves the use of the back button. My client wants
> > the use of the back button to be turned off for security reasons for
> > some pages. His preference is to have a page expire if it is arrived on
> > by pressing the
Ben Miller wrote:
edit
I hope this is not a stupid question, but I am learning how to work with
Arrays, and am having trouble figuring out how to move array values [the
whole array and all of it's values] from
page to page and/or store in a db.
Array Example");
echo ("");
for ($i=0; $i
echo (
Andre wrote:
Hello
I need some help in this subject php + COBOL.
I need to load data of a program in COBOL for a site written in php.
The data must be loaded for a DB in mysql.
Every night a job runs on our Mainframe here that creates a big file
filled with SQL updates. Every morning a CLI
contact the href=mailto:$webmaster>webmaster." . mysql_errno() .
> ": " . mysql_error() . "";
> } else {
> echo "Your Information has successfully been entered into
the
> database!";
>
> --
> Jule Slootbeek
> [EMAIL PROTECTED]
>
>
This must be obvious, but I am having trouble displaying the results of a
form in the php handler.
Here is the php code in the handler:
\n";
print " the referral date is $dateofreferral .\n";
print " the patients first name is $pfirst .\n";
print " the patients last name is $plast .\n";
print " t
There must be something obvious that I am missing but I cant get the php
form handler with the script below to display the vairables. The form which
sends this data has the correct field names. I am also using the get action,
so I can see the variables and values so I know that they are being passe
I am using the following code on the php form handler
if ($_POST[referdrremember] == "true") {
setcookie("remailcookie",
"$_POST_VARS[refdremail]",time()+3600,"/","wasserstein.com","0");
Try to see the cookie in the same script, not sure which one to use with or
without $
print " the cookie's va
Sorry,
No such thing as $_POST_VARS
"Jack E. Wasserstein" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I am using the following code on the php form handler
>
> if ($_POST[referdrremember] == "true") {
> setcookie("remailcooki
ad of time....
M i l e s.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hi,
Figured it out:
Apple wiped out the location of the socket.
they wanted '/var/mysql/mysql.sock'
it should be: '/tmp/mysql.sock'
Problem solved.
M i l e s.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
reem.org) or Quanta
(quanta.sourceforge.com).
V
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
-1; $counter++)
{
print $test[0];
}
gives me "5".
What I was hoping was that $lines should be 3 and that I'd get
3
4
5
printed.
V e r b a l
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PR
Hi all,
anyone know something more about the future Zend IDE? e.g price, etc ..
many thanks in advance
max
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail
advance
max
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
My question are: is this due to a my mistake? How can I take the "header"
and the "source" if the part is concerning to an image file?
Many thanks in advance.
max
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
uot;, $input);
}
print("\nWhat is your first name? ");
$first_name = read();
print("\nWhat is your last name? ");
$last_name = read();
print("\n\n\nHello, $first_name $last_name! Nice to meet !\n");
many thanks in advance
max
--
PHP General Mailing List (http://www
more times
my_dream_funct($var,$occurence);
//the funct now return the word _ coffe _
many thanks in advance
max
ps.plz note: I need that it works on php3
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To c
php3)
Any ideas??
Many thanks in advance
max
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
e original string -->
&flag=982420537&PHPSESSID=2c86b460d360b13c3ef08b8a46b9cafc)
Anyone could help me, please?
many thanks in advance
max
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
... :( no changes
are made on my cache file ...
Ideas or suggestion are very welcomed .. :)
many thanks in advance
max
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
Hi Christian,
>$html_code = eregi_replace (..., $html_code);
arghhh ... I'm so stupid !! Yes, u're right ...
really, many thanks
max
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
T
Hi all,
I've stored on a db using blob fields, the content of some image file.
Ayones know how to write on these image on fly w/o using the filesystem? I
mean:
many thanks in advance
max
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED
1101 - 1161 of 1161 matches
Mail list logo