18 Posted Topics
Re: 'pzuurveen' message is perfect | |
Re: u can use <input type="file" multiple="multiple" /> | |
Re: nice one... | |
Re: i think, u can use javascript.., it's very helpful.. | |
Re: I THINK U CAN USE SITES IT'S VERY USEFUL..[W3SCHOOLS.COM](http://www.w3schools.com) | |
Re: first u can learn php using tutotrial like w3schools.com, php.net | |
Re: <?php $server = 'xyz\SQLEXPRESS'; $link = mssql_connect($server, 'ab', 'abc'); if (!$link) { die('Something went wrong while connecting to MSSQL'); } ?> just check it.... | |
Re: right, php.ini file display_error to "no" so the error are not display but they ask me without changing in php.ini file how can we are not display errors in php file | |
Re: In computer science, a linked list is a data structure consisting of a group of nodes which together represent a sequence. Under the simplest form, each node is composed of a datum and a reference (in other words, a link) to the next node in the sequence; more complex variants … | |
Re: check it. $filenamekey = md5(uniqid($_FILES["myfile"]["name"], true)); move_uploaded_file($_FILES["myfile"["tmp_name"],$output_dir.$filenamekey); | |
Re: StringBuilder sb = new StringBuilder("<html><body>"); sb.append(readTextFile()); StringBuilder sb = new StringBuilder("<html><body>"); sb.append(readTextFile()); sb.append("</body></html>"); myWebView.loadData(sb.ToString(), "text/html", "UTF-8"); public String readTextFile(String filename) { // Open and read the contents of <filename> into // a single string then return it } | |
![]() | Re: try this : void bst_char_apply(bst_char *t, void (*fun)(char item)) { if (t->left) bst_char_apply(t->left, fun); fun(t->value); if (t->right) bst_char_apply(t->right, fun); } |
Re: <input type="button" value="Click Me" onclick="alert('Message')" /> | |
Re: The use case is as follows. Click Add Item Button Edit Text Type name of item Second Edit Text- Type Price | |
Re: alter table <tablename> rename column <oldname> to <newname> Ex : ALTER TABLE emp RENAME COLUMN emp_name to employee_name; |
The End.