Re: [PHP] Static utility class?

2013-09-04 Thread Rodrigo Santos
Hi, first, sorry for the bad English. Yes, at least, as far as I know, this is the perfect way to do what you want to do. Think like this: when you instanciate a class, you are allocating memory. If you don't need any information stored, then you don't need to allocate memory, right? So, it's is l

Re: [PHP] message to user after complete POST

2013-09-04 Thread Rodrigo Santos
hey, if you are just trying to give the user a feedback about the information sent, there is a Global variable for this, and it's the $_POST. When you receive the information on the script you called on the "Action" atribute of the form, via the $_POST global variable, you will test the information

Re: [PHP] htaccess to make html act as php suffixed files

2013-06-11 Thread Rodrigo Silva dos Santos
Em Ter 11 Jun 2013 15:08:59 BRT, Matijn Woudt escreveu: On Tue, Jun 11, 2013 at 7:17 PM, Stuart Dallas wrote: On 11 Jun 2013, at 18:16, Tedd Sperling wrote: Hi gang: To get html pages to use php scripts, I've used: RewriteEngine on # handler for phpsuexec. -- this makes these prefixes con

[PHP] Re: Extremely slow cURL curl_exec execution/response with 5.4.13

2013-03-22 Thread Rodrigo Mourão
Hi, The problem could be not related to php/curl, but related with dns resolve. Try to use the IP address. Regards. Rodrigo Mourao Webjump - www.webjump.com.br

Re: [PHP] Unexpected behavior of max() function

2012-12-11 Thread Rodrigo Silva dos Santos
A solution to it is, if you can, enter the array itens without the commas, just array(100,110.453351020813,9); Em 11-12-2012 05:05, Andreas Perstinger escreveu: On 11.12.2012 07:48, "Рогулин С.В." wrote: I encountered with unexpected behavior of max() function. When i pass a parameter ['100',

Re: [PHP] base64_decode

2012-10-02 Thread Rodrigo Silva dos Santos
Hello John. This code generates the following html: ?> http://web-hosting-click.com/"; title="Web hosting">Web hosting Without anyone infecting their machines, can someone tell me what this is? I found a phishing site on my DreamHost server. DreamHost has been very helpful. We found

Re: [PHP] Re: problem with my login script

2012-10-02 Thread Rodrigo Silva dos Santos
To break or not to break? that's the question... All that fight makes me (and, I think that Thomas too) learn a bit more about all of this. And for finish with all of it. I think that if something is not deprecated, is because it's is a good idea to use it somewhere. If the Language develope

Re: [PHP] problem with my login script

2012-10-02 Thread Rodrigo Silva dos Santos
this: OOP and switch could be good together and I also prefer switch eg. at action or page selection... break is an old stuff and not a nice solution (like "goto")... killing a procedure!? -means wrong planning of an app! (and jumping in the code with goto also like this) On Tue, Oct

Re: [PHP] problem with my login script

2012-10-02 Thread Rodrigo Silva dos Santos
forgot to send a copy to the list... Rodrigo, break!? Ohh man, it's a crazy idea... A developer DOES NOT use break at all (in a loop)... (switch is an exception) In the other hand Thomas, you should use while and count the lines and u need to test if username found... Yeah, this script is n

Re: [PHP] problem with my login script

2012-10-02 Thread Rodrigo Silva dos Santos
legacy code for one that is learning php. If you want, I can give you some tips to modernize your script ;) Regards, Rodrigo Silva dos Santos. Enviado por Samsung Mobile Thomas Conrad escreveu: I'm currently learning php and as a challenge, I'm creating a login script usin

[PHP] Crudin - CRUD INterface Generator - Open Source Project

2012-05-25 Thread Rodrigo de Almeida Rodriguez
much more Crudin mounts relations, to make upload of archives and images, treat fields enum/set and much more All you need is any MySQL database! Official Site: http://crudin.smarc.com.br/en Demonstration: http://crudin.smarc.com.br/demo username: demo password: demo Regards, Rodrigo A

Re: [PHP] password field validation

2009-03-12 Thread Rodrigo Escares
prueba con trim() : $pass=trim($_POST[PASSSWORD]); if (empty($pass)) { $GERROR="TRUE"; } Atte. Rodrigo (09) 7 7996571 On Thu, Mar 12, 2009 at 4:05 PM, Jason Todd Slack-Moehrle < mailingli...@mailnewsrss.com> wrote: > Hi All, > > I have an input field with type="

[PHP] Re: PHP 5.3.0alpha3

2008-12-08 Thread Rodrigo Saboya
already: http://php.net/namespace regards, Johannes and Lukas All links at http://windows.php.net/qa/ are 404. -- Rodrigo Saboya -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] What is the practical use of "abstract" and "interface"?

2008-04-15 Thread Rodrigo Reis da Rocha
classes. Like vehicle is an abstraction to car, motorbike, bike... with that you can use the method ride to all these vehicles using an vehicle variable pointing to an instance of car, motorbike or bike. Cheers. Rodrigo Reis. 2008/4/15, Jay Blanchard <[EMAIL PROTECTED]>: > > [snip

[PHP] Help with SSH2 persistent connection in php

2008-04-11 Thread Rodrigo Reis da Rocha
over again? Thanks, Rodrigo.

Re: [PHP] Slashes, include, AJAX? {SOLVED}

2007-10-26 Thread Rodrigo Poblanno Balp
Nathan Nobbe wrote: On 10/26/07, *Rodrigo Poblanno Balp* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: I get something like this is the content<\/div> it seems like the '/' is being escaped, but I need it as HTML. how are you using the json object

Re: [PHP] Slashes, include, AJAX?

2007-10-25 Thread Rodrigo Poblanno Balp
Nathan Nobbe wrote: On 10/25/07, *Rodrigo Poblanno Balp* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: Nathan Nobbe wrote: On 10/25/07, *Rodrigo Poblanno Balp* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: Hi everybody! I

Re: [PHP] Slashes, include, AJAX?

2007-10-25 Thread Rodrigo Poblanno Balp
Nathan Nobbe wrote: On 10/25/07, *Rodrigo Poblanno Balp* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: Hi everybody! I'm building a small ajax app which consists of only 3 php files. index.php which contains all the app and has a couple of links. W

[PHP] Slashes, include, AJAX?

2007-10-25 Thread Rodrigo Poblanno Balp
Hi everybody! I'm building a small ajax app which consists of only 3 php files. index.php which contains all the app and has a couple of links. When a link is clicked an Ajax request is sent to the server (using prototype) to the url central.php with only one parameter 'id'. Depending on that

[PHP] mail() silly question

2007-09-01 Thread Rodrigo Poblanno Balp
I have a question that might be too silly for those of you who are PHP gurus. Here it comes: I had a mail (specifically in the headers) function call like this: $header = ""; $header .= 'From: [EMAIL PROTECTED]"; $header .= 'MIME-Version: 1.0\r\n"; $header .= 'Content-type: text/html; charset=

[PHP] Update site through email

2006-06-29 Thread Rodrigo de Oliveira Costa
Hy guys I'd like to know if there is a way to update a site through sending an email. Something like this, you send an email and the body of the email substitutes a text you use in your site. Igreat apreciate any help since I couldn't find anything on this topic. Thanks, doRodrigo -- PHP General

[PHP] Paging Help

2006-06-20 Thread Rodrigo de Oliveira Costa
de me. Rodrigo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Cant work HTML echo loop

2006-06-07 Thread Rodrigo de Oliveira Costa
range values like "z" or a pund signal... Anyone off you guys up to the task? Thanks a lot... Rodrigo http://www.domain.com";; $url = "$urlMain"."$urlStory"."$urlChapter"; $texto = file("$url"); $result2 = count($texto); $i = 0; while ($i <

[PHP] Cant work HTML echo loop

2006-06-07 Thread Rodrigo de Oliveira Costa
range values like "z" or a pund signal... Anyone off you guys up to the task? Thanks a lot... Rodrigo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] HTTP ERRORS Boolean

2006-06-06 Thread Rodrigo de Oliveira Costa
cant access it then he should write something else. Thanks, Rodrigo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Problem with form

2006-06-06 Thread Rodrigo de Oliveira Costa
Guys I'm getting the following problem: I have a form that asks for one variable that goes into the input box, this box is named chapter, and the box is in a form that is submited to another php, and this php should receive this variable and I should be abble to access it thru $chapter, but when

[PHP] String Manipulation

2006-06-05 Thread Rodrigo de Oliveira Costa
of variables is dynamic so it can be only one or 100. Thanks guys, Rodrigo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Retrieving Content

2006-06-02 Thread Rodrigo de Oliveira Costa
with a url. Thanks guys, Rodrigo ob_start(); include('file.php'); // Could be a site here? What should I do to retrieve it from an url? $output = ob_get_contents(); ob_end_clean(); -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Retrieve output from HTML or PHP file

2006-06-02 Thread Rodrigo de Oliveira Costa
Can I do the below to an URL, like retrieving the output of a site and store it on a variable? Thanks, Rodrigo Hi Peter, Ah, I understand now. If the file echo'ed it's output you could do: ob_start(); include('file.php'); $output = ob_get_contents(); ob_end_clean();

[PHP] Re: Retrieving Content

2006-06-02 Thread Rodrigo de Oliveira Costa
but since the PHPEd dont use line 0 it should be right. Or I'm missing something... Thanks, Rodrigo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Retrieving Content

2006-06-02 Thread Rodrigo de Oliveira Costa
bering that the SELECT is dynamic so I need also to check how many labels and values there are and store them into variables. I getting a really hard time doing this. I thank any imput you guys can give me. Thanx, Rodrigo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Error: unexpected T_ELSE on line 14...?

2004-07-18 Thread Rodrigo Castro Hernandez
Hi, You have two problems in these line: Harlequin said: > > if ($_SESSION["Authorised"]="Yes"); 1. The obvious ";" at the end of the line. 2. $_SESSION["Authorised"]="Yes" it's different to write: $_SESSION["Authorised&

Re: [PHP] ASP to PHP language problems

2004-03-10 Thread Rodrigo Castro
On Wednesday 10 March 2004 18:54, Raditha Dissanayake wrote: > Hi. > There is an ADO simulator for PHP (i think it's called ADODB PHP but i > can't remember the link). There is also a asp to php converter called > (can you guess? ) asp2php. http://php.weblogs.com/ And Pear::DB must work too :P h

[PHP] Re:Form CheckBox question

2003-09-18 Thread Rodrigo Webler
If you've echo-ed or printed an Array value, yes, you'll get 'Array' as result, try to var_dump the value, and check if it isn't all well. Rodrigo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] CURL - SSL

2003-09-17 Thread Rodrigo Nakahodo
Anyone knows how to get a simple(HTML) https response using CURL session. Thanks a million!! Rodrigo Nakahodo --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.518 / Virus Database: 316 - Release Date: 9/11/2003 -- PHP General

[PHP] How to use file() function with an "HTTPS:\\www.example.com"

2003-09-17 Thread Rodrigo Nakahodo
How to use file() function with an "HTTPS:\\www.example.com" https://www.example.com/'); foreach ($lines as $line_num => $line) { echo "Line #{$line_num} : " . htmlspecialchars($line) . "\n"; } ?> Thanks a million! Rodrigo Nakahodo --- Outgoing

[PHP] Connecting PHP to Jetty...

2003-06-30 Thread Rodrigo Reyes
Hi all Has someone been able to have PHP connected to Jetty? Thanx... Rodrigo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Calling PHP from Java usign CGI...

2003-06-27 Thread Rodrigo Reyes
if I could just connect PHP to Jetty the same way PHP connects to Apache using CGI. Any idea on how to accomplish this? Thanx... Rodrigo "Catalin Trifu" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > I didn't quite understood what

[PHP] Calling PHP from Java usign CGI...

2003-06-26 Thread Rodrigo Reyes
configure the CGI variables in order to be able to call PHP? Thanx in advance... Rodrigo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Session Login

2003-06-04 Thread Rodrigo
get a good example of login with session MySql based. Rodrigo de Oliveira Costa http://www.ieg.com.br -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Help with Filesize

2003-01-27 Thread Rodrigo Corrêa
ts because the fopen function works ok, I don´t known what to do Thanks in advance Equipe Pratic Sistemas Rodrigo Corrêa Fone: (14) 441-1700 [EMAIL PROTECTED] [EMAIL PROTECTED]

[PHP] Re: get the $email string

2003-01-16 Thread Rafael Rodrigo - NSI
I don't know how do you get this answer, but try this: name; ?> Rafael Rodrigo > Hi, > > i made a page to display some user details and then clicking on the user > name it goes to another page to send a mail via mail() function. > > here is the line of the first pa

[PHP] How know from wich page you came from

2002-12-10 Thread Rodrigo
anything I need from a single file. Thanks for any kind of input, Rodrigo

[PHP] PHP with JSP

2002-12-09 Thread Rodrigo Rezende
Hello, I hava to develop a solution that use PHP and JSP. But the system has to use the same session. I´ve already installed the PHP integration with Java and it works. But I can´t find the class to call a session? Regards Rodrigo Rezende PHP Developer

[PHP] String to an Array

2002-12-06 Thread Rodrigo de Oliveira Costa
s foward. Anyone have any clues on this? Thanks, Rodrigo

[PHP] Safe mode and safe_mode_exec_dir

2002-12-05 Thread Rodrigo Borges Pereira
Hello all, I'm having a bit of a problem making a particular configuration with PHP and Apache. Here's the deal: I want to have php running with safe mode, so i define safe mode = On on /etc/php.ini. I have this script that i need to execute two programas, with exec(). So, in apache, i define a

[PHP] Encrypting a message

2002-12-04 Thread Rodrigo de Oliveira
nged, so how to start the fifth letter in the first variable instead to look for a fifth variable that isn't there? Thanks, Rodrigo

[PHP] RE: Problems with a simple While-If condition With the statement

2002-11-26 Thread Rodrigo de Oliveira
" ?> Nenhum profissional cadastrado."; } ?> ID Profissional"; echo"".$row['id'].""; echo"Nome"; echo"".$row['nome'].""; echo"Profissão"; echo"".$row['area'].""; echo"Bairro"; echo"".$row['bairro'].""; echo"Telefone"; echo"".$row['telefone'].""; echo"E-mail"; echo"".$row['email'].""; echo

[PHP] Problems with a simple While-If condition

2002-11-26 Thread Rodrigo de Oliveira
This is the fact: I'm building a homepage that can access a mysql database, and display the records within a certain condition. Following this it is verified if the sql result was empty then it should write a certain frase, if not it should write the records. I've got the worst part ok, the wh

RES: [PHP] Passing Variables from one php doc to another

2002-11-21 Thread Rodrigo de Oliveira Costa
I tried to use this way but it doesnt work I think its because it is a variable that I have to pass, something like: http://www.example.com/doo.php?dah=something&dee=$somethingelse HELP Rodrigo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php

[PHP] Passing Variables from one php doc to another

2002-11-20 Thread Rodrigo de Oliveira Costa
form witch is the first, but I’m allready sending one variable and I need to send this one also, any ideas? By the way I already trried & , +... and I’m out of ideeas, please help. The code in under my name. Rodrigo \n"; } if($pagina > 0) { $menos = $pagina

[PHP] Add content thru e-mail

2002-11-03 Thread Rodrigo de Oliveira Costa
Hi people, i'd like to know if there is a way to add content to a database thru sending an e-mail, and if there is how it would be done. Thanks, Rodrigo

[PHP] Phpmyadmin HELP!!!

2002-11-03 Thread Rodrigo de Oliveira Costa
51 PhpMyAdmin 2.3.2 Thanks, Rodrigo

[PHP] Mail() function

2002-10-28 Thread Rodrigo de Oliveira
l() script. Rodrigo SCRIPT:

[PHP] Html Change

2002-10-28 Thread Rodrigo de Oliveira
Hi guys I´d like to know if there is a way for me to browse thru one of mine webpages and dinamicaly change the contents. I mean on the following way: I´d like to have a php file to read a html document and change some of the words and then show on the net. Thanx, Rodrigo

[PHP] php mail()

2002-10-14 Thread Rodrigo Peres
Hi list, I trying to send mail using PHP's mail() function without success. My email is rejected because it goes with apache@localhost. I've tried everything put a diferent from in header etc. Does anyone have a clue My system is a RedHAT 7, PHP4.2.3, sendmail thank's n advance -- -- PH

[PHP] parse html code

2002-09-26 Thread Rodrigo
I want to enter an url, get the html code, and obtain from this all the referenced urls. Anybody knows the way to do that? Bergus

[PHP] wrong date

2002-09-26 Thread Rodrigo Meurer
Hi! Someone knows why is this returning 1969-12-31 ??? $day = 13; $month = 10; $year = 2002; echo date("Y-m-d",mktime (0,0,0,$month,$day,$year)); And MySQL also does the same when I insert '2002-10-13' in a date field!!! ::: R o d r i g o M e u r e r [EMAIL PROTECTED] B a s e 5 1 - W

[PHP] Re: checkbox question

2002-09-08 Thread Rodrigo Dominguez
Why you can't use square brackets? "Alex Shi" <[EMAIL PROTECTED]> escribió en el mensaje [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > How to ontain data from a group of checkbox using same name? > For example, in a form there're 6 checkboxes and all named as > "Interesting_Area". I know if put a

[PHP] sort dinamic generated table

2002-09-05 Thread Rodrigo Peres
Hi, I have a resume system that put a rank in it resume at runtime. example: If you do a serach for each match that it finds it atribute 1 point, now I need to sort the generated list based in this rank, how can i do this, since this rank is dinamic and isn't in database?? Thank's -- PHP Gene

[PHP] PHP e GD big files

2002-09-05 Thread Rodrigo Peres
Hi, I'm using GD to put a dinamic text in some buttons. The problem is that the original image that I use has 8k and after i put a black text it jumps to 20K. What I'm doing wrong? there's a way to compact this? Thank's -- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vi

Re: [PHP] XML doubt

2002-09-04 Thread Rodrigo Dominguez
Forgot a step: (1C) make an xslt stylesheet which is basically just a > beefed-up html page. > Check out devshed.cm > xml.com > and w3c.org for info on xslt stlyesheets > > Geoff Hankerson wrote: > > > Rodrigo Dominguez wrote: > > > >> I don't know how to

[PHP] XML doubt

2002-09-04 Thread Rodrigo Dominguez
I don't know how to work with XML... I know that it's a good standard to pass information between computer or applications, but I don't know how to separe my data from my presentation on my PHP projects. I always use OOP, I organize all the data in databases and clases, but I always have to put s

[PHP] Re: Pass array in HTTP_POST_VARS question

2002-09-04 Thread Rodrigo Dominguez
If you are in a session you can register the array and it will be available on the next page, once you finish working with the array, just unregister the array. File1.php action= file2.php session_start(); session_register("foo"); var $foo = array(); File2.php session_start(); Work with $foo s

Re: [PHP] XML vs Everything Else

2002-09-03 Thread Rodrigo Dominguez
I'm writting an application, a control panel for a web site, and it will be great if I can separe data from presentation, I know that I have to work with XML and XSL but I didn't understand how it works. Can you give me a simple example? Let guess that a client request index.php, and I have inde

Re: [PHP] Uploading file

2002-09-03 Thread Rodrigo Dominguez
You are doing wrong... you are checking for the temp file and after that you are deleting the temp file, you should copy the files first This is your code if(isset($UploadedFile)) { unlink($UploadedFile); // Here you are deleting the temp file print("Local File: $UploadedFile \n"

[PHP] Re: PHP OOP

2002-09-03 Thread Rodrigo Dominguez
.. > Not tested, but what if you change > > $b[0] = new one(); > $b[1] = new one(); > > to: > > $this->b[0] = new one(); > $this->b[1] = new one(); > > On Tue, 3 Sep 2002, Rodrigo Dominguez wrote: > > > I have a problem,

[PHP] PHP OOP

2002-09-03 Thread Rodrigo Dominguez
I have a problem, I can't create an array of classes into a class, for example: class one { var $a; function foo() { echo "foo"; } } class two { var $b; function initialize() { $b[0] = new one(); $b[1] = new one(); } } $test = new two(); $test->

[PHP] PHP OOP

2002-09-03 Thread Rodrigo Dominguez
I have a problem, I can't create an array of classes into a class, for example: class one { var $a; function foo() { echo "foo"; } } class two { var $b; function initialize() { $b[0] = new one(); $b[1] = new one(); } } $test = new two(); $test->

Re: [PHP] search in serialized string

2002-08-26 Thread Rodrigo Peres
I mean double ouch!!! :-) well.. 1 no, it's a select for the language ( Rodrigo, > > Inherited problems = ouch! > > Sorry I don't keep old list msgs, perhaps you mentioned this before: does > the language skills field contain: > 1 both the language and the skill-

Re: [PHP] search in serialized string

2002-08-26 Thread Rodrigo Peres
well, I my opinion is not the way to work, but like I said the work was done by other guy, and now I have the problem to solve. So i back to old question :-) How can I search with some precision in a serialized string? on 8/24/02 12:13 PM, DL Neil at [EMAIL PROTECTED] wrote: > Rodr

[PHP] search in serialized string

2002-08-22 Thread Rodrigo Peres
. I've tried everything unsuccessfully. example: search english advanced. If the user have english basic and another advanced he/her appear in the search. Thank's in advance Rodrigo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] search in serialized string

2002-08-21 Thread Rodrigo Peres
. I've tried everything unsuccessfully. example: search english advanced. If the user have english basic and another advanced he/her appear in the search. Thank's in advance Rodrigo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] protect code or something like..

2002-06-14 Thread Rodrigo Peres
ude of the project in another server and generate a log of the acess to it, or anything that can "tell me" who is installed and running the system. Thank's Rodrigo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php to generate statiscs

2002-06-03 Thread Rodrigo Peres
Does anybody knows the link to this article or other that treats something like this. I couldn;t find it in devshed. Rodrigo on 6/2/02 3:57 PM, John Holmes at [EMAIL PROTECTED] wrote: > Look into cross-tab queries (I think that's what they are called). There > is a good article on

[PHP] php to generate statiscs

2002-06-02 Thread Rodrigo Peres
thing grouped by sex and alone too, present the respectives percentages etc... How do I begin??? Can someone help?? thank's in advance Rodrigo Peres -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Function

2002-05-21 Thread Rodrigo
Hi guys I’m trying to use a function on na .inc file, how should I do? How should I write the function and what should I write on the file so that the function file is “Included” to be used on a function call on the php file? I appreciate any kind of sample code. Thanx, Rodrigo de Oliveira

[PHP] Text file

2002-05-20 Thread Rodrigo
Hi guys: What I need is a php file that will read a text file and show it on a html file. And it will also write to a text file, but at the end of the file. Thanx, Rodrigo de Oliveira Costa.

[PHP] Message isn't received in form mailer

2002-05-04 Thread Rodrigo
Hi guys, I'm trying to send the contents of a form thru the php script under this message, but I'm not receiving the message itself, I just receive the message in blank. Just with the subject and the from. Does anybody know what the problem is? Thanks for the help, Rodrigo mai

[PHP] Help php MySql link

2002-05-03 Thread Rodrigo
Hi guys, what I need is how to make the link between the php and the Database. Is this the code for it? ro something like that? Help me guys... If you could tell me what each command line do I'd appreciate it, cause I got almost all from a friend, but is incomplete. The code follows this mes

[PHP] phpMyAdmin

2002-05-03 Thread Rodrigo
Hi guys, I need to know the script to insert some fields into the database. Like this: I need to get from a form the email, login, password and store it on the database. I'd like to know how this script would be. Code is apreciated. ;) Thanks, Rodrigo

[PHP] phpMyAdmin

2002-05-03 Thread Rodrigo
at I would need would be what are the configurations that I have to put in each of these fields. And also I would need to know a php script to access the fields, and write to new fields. Thanx, Rodrigo

[PHP] Hashes in text files

2002-05-02 Thread Rodrigo
Can I store Hashes in text files? If yes, how? Can I store a multi dimensional array in a text file? If not how should I do to store the data in one file and the "pointer" in another file? Thanx, Rodrigo

[PHP] Help with Bookmark

2002-05-02 Thread Rodrigo
file for each user named loginbookmarks.txt containing the list of urls and hopefully an indicator, as in a hash, to call the bookmark by it's name. That's all, I've figured the first two but I can't seem to make the third one. Anyone can send me any ideas... Code hopefully. Thanks, Rodrigo

[PHP] file() and macintosh line break

2002-05-01 Thread Rodrigo Peres
e file and eregi_replace the line breaks, it worked, but now I don't know how to use this to create the array! Thank's in advance Rodrigo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Login with Text Files

2002-04-30 Thread Rodrigo
ode goes after this message. Thanks to all. Rodrigo. http://www.domain.com/restricted/restricted.htm'); } else header('Location:http://www.domain.com/denied.htm'); ?>

[PHP] How to findout if the file is over

2002-04-29 Thread Rodrigo
I've got the following problem: I'm trying to send a number of messages to a certain number of e-mails, the e-mails are writen in a text file and I need to findout when the file is over. The sample code is under this line , if someone can help me, I'd apreciate it. "; $Assunto = "Assunto

[PHP] build array dinamicaly

2002-04-29 Thread Rodrigo Peres
i try to access i will have something like $cliente['nome'][0] or $clientes['adress'][1] and so on. Someone can help??? Thank's in advace Rodrigo Peres -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Last time Append line to text file

2002-04-28 Thread Rodrigo
Ok, but I'm trying the following code wich is basicaly the same Miguel sent me and I still get the same message. Please excuseme for being so repetitive but Í don't seem to see where is the mistake, Sorry guys for the trouble. Warning: Supplied argument is not a valid File-Handle resource

[PHP] append line to text file HELP !!!

2002-04-28 Thread Rodrigo
Ok guys, this is the code and under it you can see what I get when I try to submit the form. Warning: Supplied argument is not a valid File-Handle resource in /home/restricted/home/h4ck3r/public_html/write.php on line 4 Warning: Supplied argument is not a valid File-Handle resource in /

[PHP] Append a line to a Text File

2002-04-28 Thread Rodrigo
ile at the end of it without overwriting it. Thanx, Rodrigo PS: If possible send a code for instruction. ;)

[PHP] Append a line to a text file

2002-04-28 Thread Rodrigo
I need to add a email to the text file that is already written, but I get the file writen over , so I always get only the last email send by the form. What I need is a form that get the e-mail and it writes the email at the end of a text file. Thanx, Rodrigo

[PHP] using html select as array

2002-04-25 Thread Rodrigo Peres
that is not in the dropdown. my question is how can i know when this was typed when i do the select to update the user itens. I mean, when i select and populate your preferences to update, how can i know that this info is from the input text??? Thank's Rodrigo -- PHP General Mailing

[PHP] read text file into mysql

2002-04-24 Thread Rodrigo Peres
e with and Idea??? thank's in advance Rodrigo -- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] multidimensional array

2002-04-19 Thread Rodrigo Peres
ert in another table. Thank's Rodrigo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] multidimensional array

2002-04-19 Thread Rodrigo Peres
rt in another table. Thank's Rodrigo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] include() and require() problem

2002-04-19 Thread Rodrigo Peres
o ISP many times but they couldn't solve to. My directorie structure is : HRM(directorie)->includes(directorie)->my inc files(to be included in files that is in the directorie HRM). Thank's Rodrigo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] session unset or unregister??

2002-04-11 Thread Rodrigo Peres
ion_unregister('data'); } but the code doesn't erase the var from session, and If i use session_unset('data') it erases all vars from session, that I don't want to. How to solve this?!??! i have started the session and used session_register('data','id')..

[PHP] mail to authenticated smtp on WIN2K

2002-04-04 Thread Rodrigo Figueiredo
the authentication requirement. If this is so, is there a way to specify this authentication either in php.ini or in the script? Any input is greatly appreciated. Thanks. Rodrigo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] setcookie with array (was serialize)

2002-03-28 Thread Rodrigo Peres
ript aways returns 1, but I've submited 10 values. Thank's in advance Rodrigo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

  1   2   >