Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 8 years ago.
Improve this question
I want create a form same picture below:
http://i.stack.imgur.com/ezVmO.jpg
or anythings same it.
and post.php can excute it as:
array[0] => 'User1'
....
array[9] => 'User9'
anyone can help me? sorry about my English.
can you please check this jTags demo AND tagging
You should try this, http://xoxco.com/projects/code/tagsinput/
There are lot of other "Tagging" jquery plugins available.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
How does one display the USD exchange rate from https://bitpay.com/api/rates using PHP on a web page?
ie, that in the first line:
{"code":"USD","name":"US Dollar","rate":325.8}
you need json_decode() from php
it will convert the json data to a php object
but as suggested by Marc B
write some code
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
In learing mongo with php,I have a tiny problem,
that is all,any help would be great appreciated!
You need to read this MongoPHPQueries Page and probably before that you need to do as #RocketHazmat said and start with this MongoPHP Tutorial.
But here is something that might help you with the data you are trying to find.
$cursor = $collection->find(array("addressse.0.state" => "NY"));
The above will give you a cursor allowing you to iterate over each record that is returned. Hope this helps.
FYI - You need more than just that line above to get that to work. So follow the links.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I am looking to create a simple url where I can add URL querys to it and then have these saved to a database.
This would be the format that i'm looking for
example.com?name=value1&email=value2
Could anybody help ?
Get the values on the script from $_GET, then put them in your database using PDO or MySQLi. I don't know your database structure so I can't really help any further:
// In index.php
echo $_GET["name"];
echo $_GET["email"];
// Put them in your database
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I need to get the schedules of each class from this list: http://timeplan.uia.no/swsuiakrh/public/en/default.aspx
Is there an easy way to do it? I have heard of datamining but i have no idea what it is, any good tutorials for it?
Use cURL to fetch the page and then use something like DomDocument to get the exact data that you want.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
How I can create a php file to check mysql database if there is new row inserted ?
any article for this ?
thanks in advance.
Use google cloud messaging and modify your insert script
https://developer.android.com/google/gcm/index.html
the google site has API examples