[PHP] clear a mysql table

2008-10-25 Thread Ronald Wiplinger (Lists)
I need to clear a table (cache) from a database based on the database size. Our web site uses cached pages. Our webhost only allow us 100 MB storage. Usually the database is just 10 MB, but when a search engine crawls our calendar, then the storage is quickly 108 MB. The system reports then mathem

[PHP] Unsubscribe issues

2008-08-22 Thread Ronald Wiplinger
Maybe some (other lawyer) could clean up that unsubscribe page. (Replies would not reach me, save your energy!) bye Ronald

[PHP] syntax error

2008-07-21 Thread Ronald Wiplinger
On a system with php4 and mysql 4.x I had these lines: require("../db-config"); // includes $dbhost, $buname, $dbpass $db = mysql_connect($dbhost, $dbuname, $dbpass); mysql_select_db($dbname,$db); $sql = "SELECT * FROM CATEGORY WHERE ."; $result = mysql_query($sql,$db); $num=m

[PHP] phpmyadmin

2008-07-10 Thread Ronald Wiplinger
to use the database. Thanks for enlightening me. bye Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] scanned in & manipulate to a pdf

2008-05-25 Thread Ronald Wiplinger
Ronald

[PHP] Image modifications

2008-05-25 Thread Ronald Wiplinger
I would like to find some samples to start with. We want to upload a picture and the user may apply some "filters" or "instructions" to create a new picture, based on the uploaded picture and the available "filters" and "instructions". The idea of it is not really mature, since we have no idea wh

[PHP] Tool for programmer team

2008-01-21 Thread Ronald Wiplinger
What is a good tool to coordinate a team of programmers efficiently? To give each one a different part of the project is a start, but it needs to get combined at some points to be a working project. Not to debug code you have written was a hint, to see actually bugs as a bug and not as a feature.

Re: [PHP] BBcode - Solved

2007-12-16 Thread Ronald Wiplinger
I copied BBCodeParse.ini to the wrong place, Ronald Wiplinger wrote: > I tested BBcode (Pear extension) with that code: > > if (!empty($_POST['bbcode'])) { > require_once 'HTML/BBCodeParser.php'; > $parser = new HTML_BBCodeParser(parse_ini_fi

[PHP] BBcode

2007-12-16 Thread Ronald Wiplinger
put on the screen is also just: [list] [*]normal [*][b]bold[/b] [*][u]underline[/u] [*][i]italic[/i] [/list] What am I doing wrong? bye Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] checkbox unchecked

2007-12-02 Thread Ronald Wiplinger
Stephen wrote: > Ronald Wiplinger wrote: >> How can I force a "n" for not checked in the input field? or how can I >> solve that? >> > Either use radio buttons or a drop down for the input field. Thanks! > > Stephen > -- PHP General Mailing List

[PHP] checkbox unchecked

2007-12-02 Thread Ronald Wiplinger
input fields do not match!"; } break; How can I force a "n" for not checked in the input field? or how can I solve that? bye Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Can I create flash via php?

2007-11-28 Thread Ronald Wiplinger
k (and bet I tried that one before!!!), can you please help me to find the right page of the about 58,200,000 pages. (In words: 58 million 200 thousand) ;-) Thanks in advance! bye Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Can I create flash via php?

2007-11-27 Thread Ronald Wiplinger
I want to create flash animations via a web page. Is it possible? What do I need. I do not want to use Windows bye Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] session_destroy AND reload a page

2007-11-25 Thread Ronald Wiplinger
If my user wants to logout, I want that the session will be destroyed and that he must start with the first page again (index.php) and a new session. Whatever I try he always gets the old sessions or he does not come to the first page. How can I solve that? bye Ronald -- PHP General Mailing

[PHP] How to ask "if private IP"?

2007-11-25 Thread Ronald Wiplinger
I use $aa=$_SERVER["REMOTE_ADDR"]; and if(($aa=="192.168.2.108") || ($aa=="192.168.2.34")) { $aa="61.64.101.101";// for testing put in a public IP } However, I would like to cover all private IPs (192.168.x.x and 10.x.x.x and 172.??.x.x). How can I do that simple? bye Ronald

[PHP] Should I put pictures into a database?

2007-11-20 Thread Ronald Wiplinger
, in a different table or leave it like it is now. Same for the pictures. What is your opinion and why? bye Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] bank query and curl --- not important, skip it

2007-11-19 Thread Ronald Wiplinger
ure employers do not care which certificate he has, but if you can work with him or not. or short: Try to keep your job, maybe there is no other left for you. bye Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] bank query and curl

2007-11-17 Thread Ronald Wiplinger
ks. Could it be that I try to use if a customer has paid? WHY would that be wrong? > > With that attitude you'll end up keeping your money under your bed. > Anything my browser can do curl can do. > >> Bad decision I think to make this attempt. > > Why? If Ronald dec

[PHP] htmlentities()

2007-11-17 Thread Ronald Wiplinger
=Greater input and lower input Greater input and lower input A 'quote' is bold A 'quote' is bold I expected that it would give me in the second line: field2=<b>Greater input and lower input</b> and the lower two lines I expected as: A 'quote' is <b>bold

[PHP] bank query and curl

2007-11-16 Thread Ronald Wiplinger
the account. Is there a guide available how to start this project? bye Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] file_exists - this part is of topic

2007-11-14 Thread Ronald Wiplinger
had to run twice the only virus utility we got (per mail!!!) to be able to print one document. After that the virus took over again. I had to take drastically measurements, and lay off 50% of my work force! Nobody was happy about it. No answer needed! bye Ronald -- PHP General Mailin

Re: [PHP] file_exists

2007-11-14 Thread Ronald Wiplinger
line: if (file_exists('/images/pic412.jpg')) { or that line: if (file_exists('images/pic412.jpg')) { Basically I just want to avoid to show a "missing picture" ! If there is another solution for that problem I am happy too. bye Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] file_exists

2007-11-14 Thread Ronald Wiplinger
Chris wrote: > Ronald Wiplinger wrote: >> I am having troubles with the function file_exists() >> >> I tried the full path like: >> >> if (file_exists('/srv/www/../images/pic412.jpg') { >> echo ""; >> } else { >>

[PHP] file_exists

2007-11-13 Thread Ronald Wiplinger
es/pic412.jpg, it always shows the picture is missing! The file exist there! How can I do it? I want that in case the picture is really missing, a blank will be shown. bye Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Input field

2007-11-13 Thread Ronald Wiplinger
les can be injected? bye Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Simple reading a file and extract fields

2007-11-13 Thread Ronald Wiplinger
I got a larger file which consists of lines with a defined length of 56 characters. Each line ends with a line feed (0A), >From each line I want one field from position 1 ~ 5 and field 2 from position 7 ~ 46. I tried: $myFile = "plaiso"; $fh = fopen($myFile, 'r'); $theDataLine = explode("\n",fge

Re: [PHP] Need a hint how to track an error

2007-11-12 Thread Ronald Wiplinger
Chris wrote: > Ronald Wiplinger wrote: >> My php program is working with Firefox, but not with Internet Explorer. > > Nothing to do with php, your problem is javascript. > >> Is there a tool to find the problem? > > For IE, try > > http://www.microsoft.com/down

[PHP] My first xml try

2007-11-09 Thread Ronald Wiplinger
information of require(). What do I need to change? bye Ronald |getDetails() . $this->getItems(); } function getDetails() { $detailsTable = "webref_rss_details"; $query = "SELECT * FROM ". $detailsTable; $db = mysql_connect($db

Re: [PHP] Re: Sessionvariable

2007-11-07 Thread Ronald Wiplinger
Sebastian Hopfe wrote: > Dear Ronald, > > I would like to ask you, want kind of session you use in you application. I get information and put these information into a session variable, like which language the page should be displayed. I have two frames on that web page. One is the main

[PHP] Sessionvariable

2007-11-06 Thread Ronald Wiplinger
Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Chinese input character count

2007-11-05 Thread Ronald Wiplinger
characters. Now I found that there are other Chinese characters in my database, which I cannot read, but on the web they are displayed correct Chinesse. How can I count these Chinese characters? bye Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] How to replace define in a require file with mysql?

2007-11-04 Thread Ronald Wiplinger
Jim Lucas wrote: > Ronald Wiplinger wrote: >> I have a file linked with require into my program with statements like: >> >> define("_ADDRESS","Address"); >> define("_CITY","City"); >> >> I would like to replace this wi

Re: [PHP] system command

2007-10-26 Thread Ronald Wiplinger
... later I pickup the variable $a again ... The problem for me is that the line $a=system('/usr/bin/lynx -dump http://api.hostip.info/country.php?ip='.$aa); prints (before ) the result ($a). I need the variable within the program, but do not want to display it. It seems that 'sy

Re: [PHP] system command

2007-10-25 Thread Ronald Wiplinger
I get: REMOTE_ADDR=192.168.250.108 XX a=61.64.101.101 aa=XX location=0 TW a=61.64.101.101 aa=TW location=0 as you can see, if I put the IP address in, I get the right answer (TW). What am I doing wrong? bye Ronald Use double quotes to get the value of $a or else you get the literal string &

[PHP] system command

2007-10-24 Thread Ronald Wiplinger
aa=system('lynx -dump http://api.hostip.info/country.php?ip=61.64.101.101',$location); echo "a=$aaa=$aalocation=$location"; I get: REMOTE_ADDR=192.168.250.108 XX a=61.64.101.101 aa=XX location=0 TW a=61.64.101.101 aa=TW location=0 as you can see, if I put the IP address in, I

[PHP] Php generated html email

2007-10-22 Thread Ronald Wiplinger
How can I create a html email directly from a web page via Php? The page will include tables, background colors and pictures within the tables. The received email should be readable without Internet connection (pictures, must be sent with the email) bye Ronald -- PHP General Mailing List

[PHP] Thoughts on multiple servers

2007-10-22 Thread Ronald Wiplinger
the users IP (within the web server) to provide startup settings, like Time zone & so time of the user, language, country, ... ? 5. How to make it fail-fall-over if one of the server (web and/or database server!) is not working? Thanks for you input! bye Ronald -- PHP General M

[PHP] picture upload within a form

2007-10-19 Thread Ronald Wiplinger
I have a form, where I upload a picture and a corresponding text. Is it possible to have a form (upload picture) within a form (text)? As I have it now, the submit button just does nothing. bye Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Need a hint how to use an anker on the next page

2007-10-18 Thread Ronald Wiplinger
Katze 3. rose 4. car Auto in the example the third one has not been answered, by returning to that page the display start nearby "3. rose". bye Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe, v

Re: [PHP] Re: I am looking for a color picker working also in Firefox

2007-10-18 Thread Ronald Wiplinger
Colin Guthrie wrote: Ronald Wiplinger wrote: I found many nice color picker (True color), which are working fine in IE, but I need one, which works also in Firefox. Can you give me a recommendation, please? http://www.iosart.com/firefox/colorzilla/ I couldn't get it to work

[PHP] I am looking for a color picker working also in Firefox

2007-10-18 Thread Ronald Wiplinger
I found many nice color picker (True color), which are working fine in IE, but I need one, which works also in Firefox. Can you give me a recommendation, please? bye Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How to display ALL session variables?

2007-10-18 Thread Ronald Wiplinger
Nathan Nobbe wrote: this is a nice little tool as well; it would be pretty decent for spitting out the session; http://dbug.ospinto.com/ new dBug($_SESSION); -nathan That is really cool! I like that one! bye Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] How to display ALL session variables? - solved

2007-10-18 Thread Ronald Wiplinger
Ronald Wiplinger wrote: [EMAIL PROTECTED] wrote: 2007/10/18, Nathan Nobbe <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>>: On 10/18/07, Ronald Wiplinger <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: > > Is there a simple way to display a

Re: [PHP] How to display ALL session variables?

2007-10-18 Thread Ronald Wiplinger
[EMAIL PROTECTED] wrote: 2007/10/18, Nathan Nobbe <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>>: On 10/18/07, Ronald Wiplinger <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: > > Is there a simple way to display all session variables? L

[PHP] How to display ALL session variables?

2007-10-18 Thread Ronald Wiplinger
Is there a simple way to display all session variables? Like the code below I use in debug for all posted variables: echo "posted variables"; while (list($name, $value) = each($HTTP_POST_VARS)) { echo "$name = $value\n"; } bye Ronald -- PHP General Mailing List (htt

[PHP] How to replace define in a require file with mysql?

2007-10-17 Thread Ronald Wiplinger
I have a file linked with require into my program with statements like: define("_ADDRESS","Address"); define("_CITY","City"); I would like to replace this with a mysql table with these two fields (out of many other fields). How can I do that? bye R

[PHP] How to replace define in a require file with mysql?

2007-10-17 Thread Ronald Wiplinger
I have a file linked with require into my program with statements like: define("_ADDRESS","Address"); define("_CITY","City"); I would like to replace this with a mysql table with these two fields (out of many other fields). How can I do that? bye R

Re: [PHP] Re: Opening a file

2007-09-06 Thread Ronald Wiplinger
t; PHP Warning: in_array() > [function.in-array<http://develop1/credit%20card%20processing/function.in-array>]: > Wrong datatype for second argument > > But the file IS in the same folder. does ls -l give you the answer? (Does your web server has permission to read the file?) bye Ron

Re: [PHP] Re: Which CAPTCHA is the besta?

2007-09-01 Thread Ronald Wiplinger
p PHP? Some people say that captcha is just to bother humans, while the robots are learning faster to deal with it! bye Ronald Regards, Hamza. ""Tony Di Croce"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] I need a CAPTCHA script Which one i

[PHP] How to implement Open-ID on my web server?

2007-08-31 Thread Ronald Wiplinger
the user should get the choice to use some of the Open-ID preset field values to complete the signup process faster. Thanks! bye Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Arabic

2006-09-07 Thread Ronald Cole
Hi, I'm trying to use pdflib to generate Arabic. Is this possible? If so, what font should one use? Someone has told me that I may need to manipulate the unicode characters to change the order to right-to-left. Has anyone done this before? Thanks, Skip R

Re: [PHP] How to use multiple cookie statements

2004-07-13 Thread Ronald \"The Newbie\" Allen
Can you use my above values to show me what you are talking about? "Matt M." <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > > setcookie("cookie[name]","$_POST['name']", time()+86400) > > setcookie ("cookie[email]","$_POST['email']", time()+86400) > > setcookie ("cookie[bgcolor]",

[PHP] How to use multiple cookie statements

2004-07-12 Thread Ronald \"The Newbie\" Allen
aHere is my code... I have to use cookies, since I am taking a class and it dictates that we use cookies, but I can't email my instructor since she never responds. So how do I use a cookie to record multiple values? Help would be appreciative.a -- PHP General Mailing List (http://www.php.net/

Re: [PHP] Reposting elseif carry

2004-05-16 Thread Ronald \"The Newbie\" Allen
do see the logic in the operation What is the difference in a single quote and a double quote? the base_url is this suppose to be an I or and L $base_url .= dirname($_SERVER['REQUEST_URI ']); "Curt Zirzow" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECT

[PHP] Reposting elseif carry

2004-05-15 Thread Ronald \"The Newbie\" Allen
I have tried both of these statements and neither one works Trying to get the Date_and_Time to be carried in the URL. Any Help please. print ''; or echo ''; what I currently have is echo ""; Tried several things from the string and either they return a parsing error or they return ".$_P

Re: [PHP] elseif carry

2004-05-15 Thread Ronald \"The Newbie\" Allen
;"; > > On Sat, May 15, 2004 at 07:47:28PM +0400, Ronald The Newbie Allen wrote: > > I did a cut asnd paste to your code and this is the error that I receive > > > > Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting > > T_STRING or

Re: [PHP] elseif carry

2004-05-15 Thread Ronald \"The Newbie\" Allen
I did a cut asnd paste to your code and this is the error that I receive Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in c:\inetpub\wwwroot\check.php on line 9 "Daniel Clark" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PRO

[PHP] elseif carry

2004-05-15 Thread Ronald \"The Newbie\" Allen
I have tried both of these statements and neither one works Trying to get the Date and Time to be carried in the URL. Any Help please. print ''; or echo ''; The code: '; } elseif ($event == "Conference_Calls") { print ''; } elseif ($event == "Outage_Reports") { echo ''; } else { echo ''

Re: [PHP] New Newbie Question

2004-05-15 Thread Ronald \"The Newbie\" Allen
Travis thanks this worked! It is amazing what one little thing will do value="" "Travis Low" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Change: > >value= > > to > >value="" > > or > >va

[PHP] Re: New Newbie Question

2004-05-15 Thread Ronald \"The Newbie\" Allen
en Roehr" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > "Ronald "The Newbie" Allen" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > Here is my problem: > > When I get the value of $date and I echo it it shows up jus

[PHP] New Newbie Question

2004-05-15 Thread Ronald \"The Newbie\" Allen
Here is my problem: When I get the value of $date and I echo it it shows up just fine $date = date("Y-m-d H:i"); echo "$date"; 2004-05-15 16:20 but when I go to insert the value into a form like this Time: size="50"> it only displays 2004-05-15 why is this? Annoying Master Statio

[PHP] Re: Carrying Variables

2004-05-15 Thread Ronald \"The Newbie\" Allen
OK I am a moron. I looked at your code and the answer is there!!! "Ronald "The Newbie" Allen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > How would you carry two variables? > > > > "Ronald "The Newbie" Allen"

[PHP] Re: Carrying Variables

2004-05-15 Thread Ronald \"The Newbie\" Allen
How would you carry two variables? "Ronald "The Newbie" Allen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > That is it! Thank you very much! > > > "Torsten Roehr" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PRO

[PHP] Re: Carrying Variables

2004-05-15 Thread Ronald \"The Newbie\" Allen
That is it! Thank you very much! "Torsten Roehr" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > "Ronald "The Newbie" Allen" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > This is what I have > > inse

[PHP] Re: Carrying Variables

2004-05-15 Thread Ronald \"The Newbie\" Allen
This is what I have insert_into_the_database.php check.php This is still not working for me "Torsten Roehr" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > "Ronald "The Newbie" Allen" <[EMAIL PROTECTED]> wrote in message > news:[E

[PHP] Carrying Variables

2004-05-15 Thread Ronald \"The Newbie\" Allen
How would I carry a variable from one page to another Here is what I mean I have a send.php page and this is sent to insert_into_database.php where the values of the previous page are inserted into the database. I then use a meta=refresh to go to another page and evaluate the variable. The proble

[PHP] insert twice pb

2004-04-23 Thread Ronald Rahal
Why this code is inserting twice in the database ?

RE: [PHP] Re: I think this is a mysql question

2004-02-11 Thread Ronald Ramos
TECTED] Sent: Thursday, February 12, 2004 9:08 AM To: [EMAIL PROTECTED] Subject: [PHP] Re: I think this is a mysql question Ronald Ramos wrote: > How can I use PHP to compute the difference between two dates(with > time)? Let's say in mysql, I have field 1, login, and on field 2, I &

[PHP] I think this is a mysql question

2004-02-11 Thread Ronald Ramos
How can I use PHP to compute the difference between two dates(with time)? Let's say in mysql, I have field 1, login, and on field 2, I have logout. How can I compute the diffrence between login and logut and output it on field 3 let's say totaltime. Is this a mysql question? Or can PHP actually d

[PHP] SESSION VARIABLES

2004-02-09 Thread Ronald Ramos
Hi All, I've created 3 sample scripts, pls see below. My problem is that page3.php can't display the value $username and $password Or is it because it the variables were not importe to that page, that's why $username and $password has no value? If it is, how can I import it? Thank you -

Re: [PHP] suggestion: recursive calls

2003-09-05 Thread Ronald van Raaphorst
yeah, but my unix server is located at my providers place, and I can't get a core dump. Ronald "Robert Cummings" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED] > I've accidentally had infinite recursion at times. Under Linux if > configured, you

Re: [PHP] suggestion: recursive calls

2003-09-05 Thread Ronald van Raaphorst
Yep, but then I expect a timeout error because my script is running more than say 20 seconds... Ronald "Marco Schuler" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED] > Hi > > Am Don, 2003-09-04 um 12.40 schrieb Ronald van Raaphorst: > >

Re: [PHP] suggestion: recursive calls

2003-09-04 Thread Ronald van Raaphorst
en, after a lot of tracing, I found the source of the error. Ronald "Marek Kilimajer" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED] > I don't think it is even possible, if the recursive calls don't seem > infinite to inteligent human being,

[PHP] suggestion: recursive calls

2003-09-04 Thread Ronald van Raaphorst
Hi all, Not a real bug, but a suggestion: It would be nice if inifite recursive calls would somehow give an error. I spend quite some time to find the error in my php script. Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Website templating schemes

2003-09-02 Thread Ronald van Raaphorst
Search google for Smarty (I believe it's www.smarty.php) It's a great way of separating output from the logic using templates. Ronald "Joel Konkle-Parker" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED] > I'm trying to make a PHP-backed website, an

[PHP] Re: objects in header / sharing data among frames

2003-09-01 Thread Ronald van Raaphorst
Oeps, sent twice... Sorry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Sharing data among frames ?

2003-09-01 Thread Ronald van Raaphorst
already is being displayed. Are there any examples on how to do this? Am I looking in the wrong direction? Is there another solution? Ronald >From the www.w3.org specification on http://www.w3.org/TR/1998/REC-html40-19980424/present/frames.html#sharing-frame-data Sharing data among frames Auth

[PHP] objects in header / sharing data among frames

2003-09-01 Thread Ronald van Raaphorst
already is being displayed. Are there any examples on how to do this? Am I looking in the wrong direction? Is there another solution? Ronald >From the www.w3.org specification on http://www.w3.org/TR/1998/REC-html40-19980424/present/frames.html#sharing-frame-data Sharing data among frames Auth

[PHP] Optionally force refresh in another frame

2003-09-01 Thread Ronald van Raaphorst
other article, or table. But on some occasions, I want to menu to select another topic, based on a condition evaluated by Content.php. How can I optionally tell the menu frame to refresh? TIA Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Refresh a frame based on a condition in another frame?

2003-09-01 Thread Ronald van Raaphorst
e (controlled by menu.php). I hope this is more clear. Ronald "Raditha Dissanayake" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED] > Hi, > > It's not very clear from your message what you are trying to do. If you > are trying to just reload some

[PHP] Refresh a frame based on a condition in another frame?

2003-09-01 Thread Ronald van Raaphorst
necessary, and on the other hand, when content.php notices another menu item should be selected, it has to be renewed... Any help is greatly appreciated Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] upload file size corruption?

2003-03-16 Thread Ronald Petty
I was wondering if php has a bug or is it apache, and how to determine which it it. Every file I upload to my server, I print the file size and it is twice the normal file size? Any idea what is going on, text files "look" ok, images are all screwed up, large text files are messed up too actually

Re: [PHP] php file writting ?

2003-03-14 Thread Ronald Petty
Yes I did. Here is the code, maybe I am just missing something (this is the part where it writes and then opens again... $h6 = fopen("/etc/group.backup","a"); for($i = 0; $i < count($users); $i++) { for($k = 0; $k < count($grouplines);$k++)

[PHP] php file writting ?

2003-03-14 Thread Ronald Petty
I open a file, modify it, save it out to disk. The VERY next line, i open it, and the size is zero. I look at the file and it is fine (not zero). I think there is a timing issue with php on file read/writes. I tried sleep(1), but all that did was slow the script down (didn't help). Any ideas?

[PHP] php 4.3.1 and apache 2.0.44 dont work on file uploads

2003-03-13 Thread Ronald Petty
I get files that twice the size when uploaded then the original. I am going to try the previous version of php and see if it works. If not Ill try the previous version of apache. Has anyone else seen this? I have scoured the archives and I am not the only person with this problem. Ron -- PH

RE: [PHP] "include" question

2002-12-12 Thread Ronald Clark
Thanks! Works perfect with double quotes! RC -Original Message- From: Tom Rogers [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 8:21 AM To: Ronald Clark Cc: [EMAIL PROTECTED] Subject: Re: [PHP] "include" question Hi, Friday, December 13, 2002, 12:07:05 AM,

RE: [PHP] Can PHP do this...?

2002-12-11 Thread Ronald Clark
iginal Message- From: John W. Holmes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 11, 2002 11:45 AM To: Ronald Clark; [EMAIL PROTECTED] Subject: RE: [PHP] Can PHP do this...? > Hello all. I have a question that I hope someone can answer. Is it > possible to determine is someone

[PHP] forms page

2002-02-09 Thread Ronald D Wahlen
Hello PHP Group, Thanks for the information on the books. I have a questions about a forms page. I wish to create a page using PHP to create a page that is submitted to my email address. Is this similar to HTML? Also, if you have any good examples out there on the web - I'd like to take a look.

[PHP] Books on PHP

2002-02-05 Thread Ronald D Wahlen
Hello, I am new to PHP and was wondering if anyone can point me the right direction with PHP urls and books to learn how to develop web sites using PHP. I read some of the information on www.php.net web site and have the PHP Bible. Thanks, Ron -- PHP General Mailing List (http://www.php.ne

Re: [PHP] Uploading a file

2002-01-24 Thread Ronald Tezuka
To keep this arguement from going on indefinately one thing I know that I haven't seen anyone commenting on is the fact that even if MAX_FILE_SIZE is optional, the HIDDEN element is not optional. Somewhere on those PHP pages it says that you need to have one hidden element. MAX_FILE_SIZE is t

Re: [PHP] Uploads

2002-01-21 Thread Ronald Tezuka
"Dennis Moore" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]> >Subject: Re: [PHP] Uploads >Date: Mon, 21 Jan 2002 18:23:25 -0500 > >make sure you set the max_file_size in your form. > >ie > >or set it in your php.ini or .htaccess

Re: [PHP] Uploads

2002-01-21 Thread Ronald Tezuka
im Lucas [php]" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]> >Subject: Re: [PHP] Uploads >Date: Mon, 21 Jan 2002 15:01:37 -0800 > >make sure you increase your script timeout limit. >Jim Lucas >- Original Message - >From: "

[PHP] Uploads

2002-01-21 Thread Ronald Tezuka
If anyone can help me out, that'd be greatly appreciated. I'm trying to create an upload form. Now I've checked both in books and online, and maybe it's becuase I'm trying a weird application, but I can't seem to get uploads greater than 6 megs. If it is greater than 6 megs, it loads up a bl

[PHP] Tag {HEADER} not found in template loginform.inc.php

2001-10-21 Thread Ronald Weinrich
Hi All, Tag {HEADER} not found in template loginform.inc.php. What could be the error of this error-message. The tag exist in row 1 loginform.inc.php of like: {HEADER} TIA Ron -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For addition

[PHP] auth-loginform will not be parsed ?

2001-10-20 Thread Ronald Weinrich
Hello All I try to implement a authsystem like. 1.) in php.ini I call prepend.php to initial db_mysql.inc ct_sql.inc session.inc auth.inc perm.inc user.inc local.inc.php page.inc.php 2.) in local.inc.php I have the class My_Auth where I create a $tpl new EasyTemplate("loginform.inc.php") in the

[PHP] Include and require

2001-05-03 Thread Ronald
cause) So where is the difference between require() and include(). Has anyone a working example to show me not the same results when i replace require() with include() in his code? if thus please send this tiny example @ [EMAIL PROTECTED] Ronald -- PHP General Mailing List (http://www.php.net

[PHP] Newbie password-check program

2001-02-20 Thread Ronald Hemmink
pper($this->passwd); if (IsSet($this->passwd)) { if ($this->passwd=="MYPASS" && $this->UserName=="RONALD") { $this-> testvar=1; exit(1); }

[PHP] Newbie passwordcheck-program problem

2001-02-20 Thread Ronald Hemmink
if (IsSet($this->passwd)) { if ($this->passwd=="MYPASS" && $this->UserName=="RONALD") { $this-> testvar=1; exit(1); }