What the heck is it?

|
rohit267 2019-10-11 20:06:21
JimboReddJones 2019-10-11 19:26:11
Anyone know a program to clone a wensite without rights on it

what the heck is it?

CHKDOG 2019-10-11 21:22:03
hi guys , why is Null?
CHKDOG 2019-10-11 21:22:04
luv_php-9156.jpg

CHKDOG 2019-10-11 21:22:14
luv_php-9157.jpg

CHKDOG 2019-10-11 21:22:23
luv_php-9158.jpg

hotboy_178 2019-10-12 03:13:56
is there an way to increase instagrma fellowers with php
CHKDOG 2019-10-12 08:41:27
Thank you, but I finish
CHKDOG 2019-10-12 08:41:58
Only change this
CHKDOG 2019-10-12 08:42:00
CURLOPT_HEADER, 0
CHKDOG 2019-10-12 08:43:08
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, ‘https://randomuser.me/api/?nat=us’);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
$data = curl_exec($ch);

$person = json_decode(substr($data, true));//
print_r($person);

lakshyatyagi24 2019-10-12 08:44:04
If anyone wants placement material in free than dm me
RN 2019-10-12 10:02:38
Iam using array to save the multiple table data
RN 2019-10-12 10:03:47
But after space the data is not saving on database
RN 2019-10-12 10:04:29
My code is here
RN 2019-10-12 10:04:33
luv_php-9180.jpg

RN 2019-10-12 10:17:31
Iam using array in name of input field which is hidden in table column
RN 2019-10-12 10:18:01
How i can full value from it including space
rohit267 2019-10-12 10:25:54
show full code
rohit267 2019-10-12 10:26:18
use single quotes inside double quotes
RN 2019-10-12 10:31:15
luv_php-9186.jpg

RN 2019-10-12 10:31:20
Here is code
RN 2019-10-12 10:31:47
I am using double quotes inside single quotes
mehul 2019-10-12 10:54:12
CHKDOG 2019-10-11 21:22:23

Can you try without associative?

2019-10-12 11:10:25
please any one help me random qustion quiz changing every new login in php code
RN 2019-10-12 11:17:57
RN 2019-10-12 10:31:15

I am in trouble please help me

rohit267 2019-10-12 11:27:58
RN 2019-10-12 11:17:57
I am in trouble please help me

learn how to debug, 1st try to print one line correctly, then do the rest

RN 2019-10-12 12:04:20
Any other suggestion
hotboy_178 2019-10-12 12:05:01
hey i dont undastand
Yathesha 2019-10-12 12:35:28
Hi all when PHP mailer is working with modal form it’s not working …let me know solution
Yathesha 2019-10-12 12:45:24
Hi all when PHP mailer is not working with modal forms …let me know solution
Yathesha 2019-10-12 13:29:12
Can anyone suggest regarding this
Yathesha 2019-10-12 14:44:02
Ok thnq I will check it
mehul 2019-10-12 16:35:38
Hi Guys, if you need extra hands on a project. Feel free to ask.
Java_73 2019-10-12 16:51:48
Hiii i have durga sir courses if anyone need msg me
Rassell1 2019-10-12 22:39:24
Hi I am trying to save the profile URL to my database, however it just returns blank.

$response = file_get_contents(‘http://graph.facebook.com/xxxx/picture?access_token=XXX&type=large&redirect=false&width=500&height=500’);
$array = json_decode($response, true);
$omg = $array[‘data’][‘url’];

$qry = “insert into tbl_posts(id,mytoken) VALUES (‘$id’,’$omg’)”;

2019-10-13 19:50:24
Thanks rose
Rassell1 2019-10-13 21:03:50
Thabsk for your help API call is fine, as I get the desired json from the link
2019-10-14 08:29:42
Hey good morning
2019-10-14 08:30:03
How to replace php string with exact match
2019-10-14 08:30:12
I go through regexp
2019-10-14 08:30:53
Bt if word like eg i-like-you which contains dash also get replace
2019-10-14 09:12:49
My main issue is the words which contains dash(-) eg like-me the preg_replace or str_replace only consider first word ie like not as whole like-me I want the exact string match
rohit267 2019-10-14 09:21:32
2019-10-14 09:12:49
My main issue is the words which contains dash(-) eg like-me the preg_replace or str_replace only consider first word ie like not as whole like-me I want the exact string match

str_replace works for all occurring

2019-10-14 09:25:58
$filecontent=”This is a dummy text. This-is-with-dash.”

Str_replace or preg_replace gave is below output If i want to replace This with That

That is a dummy text. That-is-with-dash

What i want is

That is a dummy text. This-is-with-dash

rohit267 2019-10-14 09:28:27
2019-10-14 09:25:58
$filecontent=”This is a dummy text. This-is-with-dash.”

Str_replace or preg_replace gave is below output If i want to replace This with That

That is a dummy text. That-is-with-dash

What i want is

That is a dummy text. This-is-with-dash

you are replacing space with dash

rohit267 2019-10-14 09:28:32
check your code
Yathesha 2019-10-14 09:28:55
luv_php-9260.jpg
Hi all Can any one tell wat the issue related with
2019-10-14 09:29:34
rohit267 2019-10-14 09:28:32
check your code

I have string with dash including

2019-10-14 09:29:45
M not replacing
2019-10-14 09:29:47
Anything
|