Tagged Questions
3
votes
2answers
1k views
PHP SPL RecursiveDirectoryIterator RecursiveIteratorIterator retrieving the full tree
how can i retrieve the full directory tree using SPL ?
2
votes
1answer
342 views
retrieving Google search results
i read your post on
http://stackoverflow.com/questions/1784114/simple-php-script-to-retrieve-google-keyword-search-completion
and i was wondering how would you go 'echo' the next page?
here's my ...
1
vote
1answer
70 views
Retrieving records within a PHP function
The following code is taken from a perfect working drop down list, and then when I put it into a function it breaks it! Am I doing something wrong here?
<?php
require "connect.php";
//create ...
1
vote
1answer
150 views
How do I use curl to display a table on a page?
I want to use curl to retrieve a table from an external page. So far my code retrieves all data from the page. I have read that using preg_match or preg_replace is the way to go about it.
This is my ...
1
vote
2answers
67 views
Retrieving and writing a file to system
What's the simplest way for me, in PHP, to:
Retrieve a file from an external URL (http://test.com/thisfile)
If successful, delete local file /root/xml/test.xml
Rename downloaded file to test.xml
...
1
vote
3answers
543 views
PHP-Retrieve content from page
I'd like to retrieve a page's content and reformat it to my liking...
For example:
Go to example.com
Get content within tags with class "x"
Pass content to specific variables
Spit out the content ...
0
votes
3answers
97 views
MySQL - Get multiple values for the same column
I'm trying to build a friend system for my website and it is set up something like this:
User's Table:
id
name
Friendship Table:
member1
member2
So what I want is that when I have values like this ...
0
votes
3answers
95 views
PHP/mySQL: How can I retrieve HTML/PHP code stored in a mySQL table and not have the PHP commented out?
I am storing in a mySQL table the HTML/PHP content of individual slides to be displayed on a single page.
Here is an example of HTML/PHP code stored in the mySQL table:
<p>Welcome <?php ...
0
votes
1answer
117 views
PHP -MySQL insert and select statements - how to make them atomic?
Im new to PHP and I was wondering how I can overcome this seemingly simple problem:
I have a database with several tables. Of them 1 table is called "order_header". Order header has a field called ...
0
votes
2answers
104 views
UPDATED sorting data from mysql database still need help please
OK, obviously my first explanation of this was not clear...i wasn't exactly sure what to say. To simplify, what do I need to do to use the form below to sucsessfully search in the mysql database I ...
0
votes
2answers
184 views
Help w/ Retrieving XML via cURL
I've run into trouble with the following php code:
<?php
$url = "http://api.ean.com/ean-services/rs/hotel/v3/list? ...
0
votes
0answers
441 views
retrieve mysql data to multiple selectbox menu using php
HI,
I send multiple data with multiple selectbox to mysql database! my selectbox is : asp-.net-phyton-php-java after user select send data ti mysql database
example : php,.net ( sql )
no i need to ...
0
votes
1answer
27 views
Display that fits with parameters
I have made database that contains some information. Want to do is to retrieve and display data that fits with parameters like:
if i select green from dropdown list, it will display only information ...
0
votes
3answers
347 views
How to randomly retrieve images from my mysql database?
Okay, so I've made one php file to output the images this is the sample code for the output page:
mysql_connect (" "," "," ") or die(mysql_error());
mysql_select_db (" ") or die(mysql_error());
...
0
votes
4answers
74 views
Retrieving data from the database
Please give me a hand retrieving data from the database and showing it.
I'm learning and this is holding me from advancing :(
I have:
$result = mysql_query($sql);
$num_reg = ...
0
votes
3answers
714 views
ASP.NET/PHP/HTML: Retrieving HTML source code from a website
Is it possible to retrieve/get the html source code of a certain website and use it in a ASP.NET web application to display them? (without using the copy-paste, of course)
I want my ASP.NET web ...
0
votes
4answers
51 views
PHP Retrieving what has already been sent
Ok I know I can do this via javascript but was wondering if I have say this
<HTML><HEAD><TITLE>Specifics of Bronica SQAi 150/4 PS </TITLE>
<?
...
0
votes
1answer
450 views
cakephp retrieving multiple values in a column
I want to retrieve multiples values from a field. the code I am using this this
$conditions = array('Tag.name'=>$compare);//$compare = array('value1', 'value2',..);
$values = $this->find('all', ...
0
votes
4answers
518 views
PHP Variable from extended class
I'm trying to retrieve a variable from an extended class. This is how my main class looks:
class SS {
public $NONE = NULL;
public $NUMBERS = array("1", "2", "3", "4", "5", "6", "7", "8", "9", "0");
...
-1
votes
3answers
85 views
Retrieving a PHP variable with jQuery?
How can I retrieve a PHP variable from jQuery? If I am using a jQuery POST function such as this:
$.post("login.php", {username:username, password:password}, function(data){
...