Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
4
Posts with Downvotes
3
Downvoting Members
3
1 Commented Post
0 Endorsements
~9K People Reached
Favorite Tags
Member Avatar for ankit1122

i will be receiving JSON POST as mentioned on this web page https://sendgrid.com/blog/sendgrids-parse-api-parsing-incoming-email-is-now-faster-and-easier/ how do my application receive this request and process furthur??

Member Avatar for cereal
0
491
Member Avatar for ankit1122

do mysql create another table when selecting rows?if this happens it will take up lot more space on hard disk as duplicate entries will be risiding in table formed by "select"...

Member Avatar for Taywin
0
190
Member Avatar for ankit1122

hello i have a column named products in which differernt shops and businesses insert their product names..if it is like a stationery shop it will be saved as TEXT column as [pen,pencil,sharpner,book,copy,fluid,marker,gel pen,ball pen]...in performance point of view whats the best way to find a sub-string in this column...??? like …

Member Avatar for Taywin
0
219
Member Avatar for ankit1122

it is told that in object oriented language every thing is an object.. ihave written two lines:- int a; Object b; when i do b. options appears but when i do a. options do not appear..accourding to theory a is also an object then why the same option appear for …

Member Avatar for stultuske
0
117
Member Avatar for ankit1122
Member Avatar for JamesCherrill
0
146
Member Avatar for ankit1122

may i know what are the advantages of making a webpage available like xyz.domainname.com instead of domainname.com/xyz.. if there are any advantages let me know and how can i acomplish???

Member Avatar for ankit1122
0
98
Member Avatar for ankit1122

hello, how can i access a variable or object defined in a java class to my jsp in same project?

Member Avatar for janissantony
0
98
Member Avatar for ankit1122

hello, how could i create a timestamp or time_of_posting column in my site such that there is no sync problem bw server time and visitor's time... also that column will be used for finding if diff bw time_of_posting and current time is >11months and less than 12 months

Member Avatar for ankit1122
0
75
Member Avatar for ankit1122

hello,i have a column in my database named 'skills' where all the skills of a person are saved. if i want to find a person with multiple skills like he should be professional in cpppl,javapl,actionscriptpl,matlabpl i will do query like this select email from table where skills regexp 'javapl' and …

Member Avatar for ankit1122
0
104
Member Avatar for ankit1122

hello; i have taken shared hosting plan ..my sql query on phpmyadmin is SELECT 'EMAIL','first','last' UNION select email,first,last from e where skills regexp "javapl" and deposit>=bid INTO OUTFILE '/home/user/etc/csvfiles/1412231915.csv' FIELDS TERMINATED BY ',' LINES TERMINATED BY '\n' but it shows error #1045 - Access denied for user 'user'@'localhost' (using password: …

Member Avatar for jackstone444
0
359
Member Avatar for ankit1122

hello, after accessing users country name,,can i have a php snippet which will convert 20usd automatically to visitor currency ???

Member Avatar for almostbob
0
152
Member Avatar for ankit1122

hello, i have a database in which three columns are there.name,datetime and timestamp...datetime and timestamp consist of the time people has put their entries into database.now i want to find out set of people older than 11 month.. i mean bw 11months to 12 months so that i can give …

Member Avatar for cereal
0
129
Member Avatar for ankit1122

hello, i want to make strings coming out of database into quotes...the e-mail addresses as they came out should convert into quotes ..like abc@abc.com into 'abc@abc.com'.

Member Avatar for matrixdevuk
0
154
Member Avatar for ankit1122

hello, im developing a mass mailing application in php...in lot places i see like post to this address... lik this one.. To upload your attachment do a HTTP PUT of your attachment file to: https://api.elasticemail.com/attachments/upload?username=yourusername&api_key=yourapikey&file=test.csv and Step 3) Call mailer send with the datasource value set: To use the send …

Member Avatar for ankit1122
0
384
Member Avatar for ankit1122

hello i have a php file named index.php. within that file two php scripts are there ... they have to share four $variables values with each other...how coud i do this?? global,superglobal or static??? `

Member Avatar for ankit1122
0
833
Member Avatar for ankit1122

hello, <?php $q=$_GET['q']; //echo $q; $con=mysqli_connect("localhost","root","",$q); if (mysqli_connect_errno()) { echo "Failed to connect to MySQL: " . mysqli_connect_error(); } $abc=mysqli_query($con,"use $q") or die('cannot show tables'); $result=mysqli_query($con,"show tables"); echo "<select id='abc'>"; while($row= mysqli_fetch_array($result)) { echo "<option value='". $row[0]. "'/>" . $row[0] . "</option>"; } echo "</select>"; ?> i want to response …

Member Avatar for diafol
0
184
Member Avatar for ankit1122

hello i have seen that tables are locked in mysql while reading the same table..so should i continue using mysql in my website...

Member Avatar for steelbrain
0
278
Member Avatar for ankit1122
Member Avatar for diafol
0
208
Member Avatar for ankit1122

hello i have databses and tables in mysql db... i want to auto suggest databases name in a input box after depending on database string i want to auto suggest the tables inside that database....how could i do this?

Member Avatar for Borzoi
0
128
Member Avatar for ankit1122
Member Avatar for ankit1122
0
97
Member Avatar for ankit1122

hello, i want to show mysql query results into a table on a web page...but can i pass variable values from html tp php script i wanna show as it is important for my project

Member Avatar for mattster
0
213
Member Avatar for ankit1122

hello, i wanna know whats the best way to show query results from mysql onto a webpage.. some says this can only be done in form of table.. but nowadays table less design is preferred..tell me teh most demanding way if somebody knows..

Member Avatar for ankit1122
0
225
Member Avatar for ankit1122

hello i doesn't want to get the same results each time i query mysql db.i want the results to be shuffled each time i query .please tell some time saving technique for shuffling result set from mysql..

Member Avatar for pritaeas
0
76
Member Avatar for ankit1122

how could i send email to list of email addresses inside a mysql database?? i want to create a site helping students find home tuitions. when students fill form regarding subjects they want tuitions ,concerning teachers should get e-mail..tell how can i do this??

Member Avatar for Banderson
0
398
Member Avatar for ankit1122

hello i use https://netbeans.org/kb/docs/php/remote-hosting-and-ftp-account.html to make changes directly to my website from netbeans but it doesn't work... can anyone tell me about what to fill in hostname?? i used my websites name .....www.gigname.com

Member Avatar for almostbob
0
175
Member Avatar for ankit1122

use people; SELECT 'first' UNION SELECT first from e where skills regexp "javapl" INTO OUTFILE '/home/ankit/csv/tablename.csv' FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' LINES TERMINATED BY '\n'; this runs without problem to /var/tmp folder but other folders gave error:13 can't write please help

Member Avatar for ankit1122
0
266
Member Avatar for ankit1122

i have an array names skills in which there are various skills now i wanna create aquery like select * from tablename where skills regexp ""skill1" and skills regexp "skills2" and skills regexp "skills3"; how could i do this.. upon defining a string for concatenation php shows error....`$s=select * from …

Member Avatar for broj1
0
351
Member Avatar for ankit1122

i have this code which doesnt work completely...csv file is generated but query string named as $s is not shown... <?php $count = 0; foreach($_POST as $item) { $count += (is_array($item)) ? count($item) : 1; } // echo "Items = $count"; $db=$_POST["db"]; $skills = explode(",", $_POST["skills"]); $table = explode(",", $_POST["table"]); …

Member Avatar for cereal
0
166
Member Avatar for ankit1122

can i use submit button inside a form to access a function in other php file?because i have 2 buttons on same page but want them to do different function..one to query database other to update table..

Member Avatar for iamthwee
0
398
Member Avatar for ankit1122