0
votes
1answer
51 views

How to add node in existing xml using php simpleXML?

I have a xml file like the bellow, and I need to add a new node with some child node and attribute. <custscales> <custscale sclNo="1" type="lin"> <scaleName>Custom Scale ...
1
vote
1answer
67 views

PHPDOC Examples Without Line Numbers

According to PHPDocumentor's documentation, to show an example it would be like this: @example [location] [<start-line> [<number-of-lines>] ] [<description>] This seems like a ...
1
vote
1answer
305 views

missing examples for Zend Framework 2 tutorial “Learning Dependency Injection”

(After some very (!) useful links to articles about DI and a basic example) In the chapter "Simplest usage case (2 classes, one consumes the other)" the Zend Framework 2 tutorial "Learning Dependency ...
0
votes
1answer
100 views

New Product Or Category with php Pretsashop

I am learning developing to prestashop and i like to add category or product to prestashop with php script. I know that there is possible way with writing it to database, but i thing that with using ...
1
vote
1answer
156 views

Real examples of a API Client class

Trying to find real examples of a PHP class to access a distributed API. The API of course has tons of Methods and I don't feel like writing a class method for each because it goes against DRY. ...
-7
votes
2answers
104 views

Any way to load contents from wikipedia to my site? [duplicate]

Possible Duplicate: Is there a Wikipedia API? Is there any API or any particular way to load pages to my site. For example if am viewing www.mysite.com/php , its should display a block ...
0
votes
1answer
129 views

SSL Step Wise Beginners Implementation Guide

I have a fair idea of SSL after a reading from a few places. But from where can a self learned PHP developer learn how to implememnt SSL - IS THERE A STEP WISE GUIDE ? Specific doubt - The SSL ...
-2
votes
1answer
302 views

Web Application on Computer Data with PHP/MySQL

I want to make a computer storage (online) Web Application with PHP/MySQL... I mean where we can keep all the data of computer and all its configuration, up-gradation, problem occured, solved problems ...
1
vote
3answers
349 views

PHP, OOP practical example

i am learning about the difference between abstract classes and interfaces, but theoretical explanations are hard to understand when you don't have practical example. i have read that: By updating the ...
2
votes
4answers
604 views

Php session fixation example and fixes

My question is about this summary on session fixation: Alice has an account at the bank http://unsafe.com/. Unfortunately, Alice is not very security savvy. Mallory is out to get Alice's money from ...
-1
votes
1answer
431 views

PHP OOP Approach in this example [closed]

Im working with php for about 4 years now, but i still havent really used an OOP approach on any of my own scripts. I would really like to use it though, because for waht i heard and what i understand ...
0
votes
1answer
328 views

mysql balance check amount exists before going into minus balance

Hi, I have made this simple script but I need to have it check if the balance is correct before it goes into negative. How can I add a line to do this, and what should be in this line? An example ...
2
votes
1answer
287 views

Is there a good example of an MVC framework in practice? [closed]

I have read hundreds of articles on models, and how they are used in the MVC framework. However, I've had a hard time finding a good example of one being used in the wild. I feel like seeing ...
-2
votes
3answers
448 views

PHP OOP real world simple [closed]

I have been reading oop tutorials for quite a while for now and everybody is explaining what classes ,objects ,inheritance etc but i didnt find any real world examples like a basic starting code to ...
0
votes
1answer
141 views

Guidance, tutorials and examples on building a simple community from scratch [closed]

I will build a community like website and I need your guidance. What I can do perfectly is to tailor a cms like Wordpress exactly to my needs and I have a big experience and knowledge in ...
0
votes
1answer
1k views

Code examples in Doxygen

In my comments in doxygen I am using example code. But comments are getting very long with 20 lines of php-code in them. Is there a way to have the examples in a different file? How would I do this? ...
3
votes
4answers
7k views

Examples of commercial sites using open source (PHP / MySQL specifically)

Trying to argue the case for using php and mysql for a potentially high (maybe 10,000 hits a day) traffic site. I have read that some very large sites (much larger than our potential) do the same ...
1
vote
3answers
367 views

From Procedural to OO PHP. Live Example

I hope you will help me! =) Since I work with PHP, I always code procedural. Why? The answer is simple. I don't know how to work with objects etc.. But I want to! Really... =) I search the net and ...
7
votes
4answers
14k views

php web service example

I am new to web services. I would like to get a good tutorial and example for web service using PHP. Please suggest to me some websites that explain these things in a simple way. Thank you...
0
votes
4answers
168 views

Ask SO: Good PHP code to read?

It's quite easy for me to study html/css, as it's openly available. But I can't do the same with PHP/AJAX (and MySQL). I'm trying to learn both, but there's not much good code to find. Any tips ...
0
votes
1answer
805 views

Adobe Flash Builder 4: HTTP Service: What to return?

I'm having trouble figuring out what my Flex Project is expecting from my PHP file in-relation to HTTP Service. Can anyone give a link or an example as to what the PHP file should return? I already ...
2
votes
1answer
1k views

Using HTTP proxy in PHP

May you give me an example for using an HTTP proxy in PHP?
0
votes
1answer
188 views

PHP - How to make php.net's sample code not hang?

The Simple TCP/IP client example will hang if no data is being received. To see what I mean, copy the client code and run it, but remove one of the \r\n's in the GET request to make it invalid, so it ...
0
votes
4answers
2k views

PHP if string contains URL isolate it

In PHP, I need to be able to figure out if a string contains a URL. If there is a URL, I need to isolate it as another separate string. For example: "SESAC showin the Love! http://twitpic.com/1uk7fi" ...
1
vote
1answer
552 views

How to create simple PHP COMET server page displaying current time?

How to create simple PHP COMET server page displaying current time? I need code implementation (because it should be trivial) - not theory or just links to library sites. Simple text line conteining ...
1
vote
2answers
4k views

Drupal Token Examples of Usage

I need to include a node content in another node using some kind of placeholder, for example: [node-5663] will be translated to the node's content (body) where node-id matches 5663. The example above ...
4
votes
5answers
882 views

Tinyurl API Example - Am i doing it right :D

we use super-long Hashes for the Registration of new Users in our Application. The Problem is that these Hashes break in some Email Clients - making the Links unusable. I tried implementing the ...
21
votes
6answers
23k views

what is the function __construct used for?

I have been noticing __construct a lot with classes. I did a little reading and surfing the web, but I couldn't find an explanation I could understand. I am just beginning with OOP. I was wondering ...