Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. thenewa2x

    MVC (Model 2) Architecture

    http://www.phpmvc.net/ Googled "PHP MVC"
  2. thenewa2x

    Programmatically, how might one do this?

    Nice explanation: http://forums.devshed.com/dev-shed-lounge-26/how-does-pricegrabber-work-377913.html
  3. thenewa2x

    New to Server in PHP

    I am attempting to create an abstract PHP class that will allow some developer to create their own custom server using PHP. I am able to start the server, bind the socket, and start listening. The only issue I have is how to handle multiple connections for reading and writing. From what I...
  4. thenewa2x

    Good IDE for PHP?

    @hapax: For debugging I have PHP installed and I just execute it. For me, this is just as good. The part I like about IDE over Edit is the ability to see all of the properties, variables, globals, functions, classes, and methods in the script through a side bar. Very handy when you're script...
  5. thenewa2x

    Good IDE for PHP?

    I use ActiveState Komodo Edit but is not as feature rich as Komodo IDE. Edit - http://www.activestate.com/Products/komodo_edit/ IDE - http://www.activestate.com/Products/komodo_ide/
  6. thenewa2x

    Daemon server forking additional children?

    I do not have but it is definitely an option I would like to keep open.
  7. thenewa2x

    Daemon server forking additional children?

    I am writing an abstract server class for TCP sockets. This class can be extended to perform a variety of services, a web server is just one but even I would advise against that. Also SOAP is limited to XML which can be bulky when sending small bits of data in a live stream.
  8. thenewa2x

    Daemon server forking additional children?

    Thank you, jpadie but I'm not quite sure what to do with proc_open(). What I wanted to do is have my server listen to a specific port. Once the server receives a connection from a client, the server will fork to handle the request while allowing additional connections to be handled...
  9. thenewa2x

    Daemon server forking additional children?

    Hello. I'm writing a server class in PHP and so far it is working. The is one I would like to implement but I'm not sure how to do it. What I want to do is fork the process on every incoming connection. This way each connection to the server will spawn a separate process to complete the...
  10. thenewa2x

    Linux-based Batch Password Changer?

    Thank you, I will be investigating this.
  11. thenewa2x

    Linux-based Batch Password Changer?

    Thank you but is there something in English?
  12. thenewa2x

    Can't pass $this by reference

    Sorry about the indirectness.
  13. thenewa2x

    Linux-based Batch Password Changer?

    Our company has about 1500 PDFs that are password protected or do not have a password. What I would like to know is if there are any Linux-based applications that will change the password on password protected PDFs to another password and add a password if non is set. If at all possible I...
  14. thenewa2x

    Can't pass $this by reference

    http://mjtsai.com/blog/2004/07/15/php-5-object-references/
  15. thenewa2x

    onclick exluding elements

    Those two lines will create a JavaScript popup window telling the (obj.id) id attribute value of the object and (obj.nodeName) the HTML tag name.
  16. thenewa2x

    Hello! I'm

    I use ActiveState Edit (it's free) although I like ActiveState IDE better (but it's not free). http://www.activestate.com/Products/komodo_edit/
  17. thenewa2x

    A new issue for the beginner

    Unless you have some other processing taking care of what the user inputs, you're open to a SQL injection attack from a malicious user. You may want to take a look at these two functions for MySQL: Simple Escape: http://www.php.net/mysql_escape_string Better Escape...
  18. thenewa2x

    Designing a Self-Contained PHP Application

    Until then you could just define your own :)
  19. thenewa2x

    preg_replace syntax problem

    If $strText will equal PageBreak, could you just do this instead? if ( $strText == "PageBreak" ) { $strText = $this->AddPage(); }
  20. thenewa2x

    Designing a Self-Contained PHP Application

    I use this bit of code all the time: define( 'SCRIPT_BASE_DIR', dirname( __FILE__ ) . DIRECTORY_SEPARATOR ); And I base other absolute paths on that constant.

Part and Inventory Search

Back
Top