No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
PHP Developer, and many other tech. related
11 Posted Topics
Re: There is a book called PHP Architect's Zend PHP 5 Certification Study guide. If you get lucky, you will probably find it online as PDF file..From PHP 5 release of 2004, PHP is powered by the new Zend Engine II. Meaning all coding standards are govern by the Zend Engine. … ![]() | |
Re: I am sure Veedeoo will be very happy to see your progress has been a positive one. The kid is busy on his schooling... He texted me a while ago, and we will be the acting Physics professor on Monday. Barely, glancing in becoming 20yo, I wish I was like … | |
Re: Hello, can you post the codes of your form processor? Is it $_POST, $_GET, or the vulnerable $_REQUEST?, did you add allowed exensions filtering mechanism prior to calling move_uploaded_file function? as in function get_ext($file){ $ext_allowed = array('jpg', 'jpeg','gif', 'bmp', 'png') ; $ext = substr($file, strrpos($file, '.') + 1); /* * … | |
Re: or is this the same [module](https://github.com/veedeoo/nginx_http_push_module) , you are talking about? The reference file is from my friend "veedeoo". Is that it? If so, you can install nginx portable for windows, or if in linux environment just install nginx. In the module ( referenced link) there is a directory src … | |
Re: Hello, This js file reference **<script type="text/javascript" src="../ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js">** it has to be rewrite as <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"> | |
Re: If it is PHP related, can't it be the question was about PEAR instead of peer? If it is [PEAR](http://pear.php.net/), then PEAR is a framework and distribution system for reusable PHP components. PEAR = PHP Extension and Application Repository If it is referring to peer as in group of people … ![]() | |
Re: SOAP = Simple Object Access Protocol. Normally, this is heavily use in exchanging XML data server to server. However, we now have cURL and many excellent and well developed API that can handle most of the functions offered by SOAP. Although there are SOAP API developed like the decibel API, … | |
Re: Hello, Assuming that you already written the codes for your site, including the payment processor script ready to be integrated with the desired payment gateways. Visit this site .[Click Here](https://en.bitcoin.it/wiki/PHP_developer_intro). Download the [JSON RPC PHP ](http://jsonrpcphp.org/?page=download&lang=en)file. Sign up for your account at the payment gateway site.. Basic implementation as shown … | |
Re: hi.. not to interupt you guys or anything like that, but session_register() has already been deprecated since the release of php version 5.3.0 seasion_register() and be replace by $_SESSION['param']; Your codes above can be change from this. session_register("username"); session_register("password"); to this $_SESSION['username'] = 'your value here'; $_SESSION['password'] = 'your value … | |
Re: Hello, This is my first post in Daniweb... an extremely talented co-developer invited me here to join Daniweb. I am an active member of stackoverflow, phpclasses.org. I hope I can be of a little help here as what my colleague Veedeoo told me. I was the co-developer of an open … | |
Re: Hello, Integrating two login systems is quite tricky. The simplest way of doing this is to evalute the member's database table of both side. Once you evaluated the tables, look for the similarities of the two i.e. username, password, email The next thing to do, is to find out what … |