[PHP] workflow system design

2010-09-06 Thread gato chlr
Hi, i know it is not the right place, but, does anybody know a workflow
system development process? or methodology?
thanks!


[PHP] sell with php

2010-03-05 Thread gato chlr
i'm trying to put a tool to sell in my website in PHP. ¿what do you
recommend to me?

thanks


[PHP] PHP, PHPMailer and SMTP Server

2010-02-20 Thread gato chlr
Hi,to every body

i'm buildding a little application, for now i'm working in my localhost.
I need to send a mail and i need to use phpmailer, but..
when i send a mail using phpMailer it tooks a lot of time, i suppose it is
because the bandwidth (128kbps and 3 PCs connected in the LAN). any way i
need to solve it. thinking a few i have found the next posible solutions:

*install a SMTP server in my machine, so , when the phpMailer sends a mail ,
there is no routers to jump , and no need to consume bandwith, the PHP
application does keep freezed waiting for

*use multithreading in php , how? creating a thread to send the mail, and
the application can show me the next screen while the sender thread is
working, but as long as i readed , it does not exists. I have found a
solution in Linux by using forke function,  damn i'm working on Windows.
Like all, i supose there is a way to make it works in Windows.

*Ask to my php comunity , explain my problem, and my posible solutions, and
receive a good feeback in order to know wichone is better solution, and
listen if there is other solutions



so i will appreciate the contributions, thanks to every body


[PHP] $_POST is empty , but were are the variables posted??

2009-12-17 Thread gato chlr
Hi,
sorry for ask this again, but i really can't solve it.
It must be easy but i can't find the solution

this is my code:
//form.php
form id='form1' action=mail.php method=POST 
name : /tdtdinput id=myname type=text
input type=submit value=enviar
/form

//and this is the mail.php
$name  = $_POST[myname];
var_dump($name);

and the result is:
NULL

i'm using php 5, i don'd know what is wrong and i have readed a lot of blogs
and forums, there is a lot of people with this problem , but i have not
found a solution. thanks for the help


Re: [PHP] $_POST is empty , but were are the variables posted??

2009-12-17 Thread gato chlr
THANKS A LOT!!! to every one!!! . it works.

2009/12/17 Joseph Thayne webad...@thaynefam.org

 Give your input a name. (i.e.  name=myname)

 -Original Message-
 From: gato chlr [mailto:dany...@gmail.com]
 Sent: Thursday, December 17, 2009 3:22 PM
 To: php-general@lists.php.net
 Subject: [PHP] $_POST is empty , but were are the variables posted??

 Hi,
 sorry for ask this again, but i really can't solve it.
 It must be easy but i can't find the solution

 this is my code:
 //form.php
 form id='form1' action=mail.php method=POST 
 name : /tdtdinput id=myname type=text
 input type=submit value=enviar
 /form

 //and this is the mail.php
 $name  = $_POST[myname];
 var_dump($name);

 and the result is:
 NULL

 i'm using php 5, i don'd know what is wrong and i have readed a lot of
 blogs
 and forums, there is a lot of people with this problem , but i have not
 found a solution. thanks for the help