What you tube channels do you recommend for learning php oop and laravel?

|
2020-06-29 19:43:47
Bro how do we work in laravel
Zia Rehman 2020-06-29 20:07:38
Please give me solution?
Zia Rehman 2020-06-29 20:08:13
Restaurant pos.
Zia Rehman 2020-06-29 20:15:50
We can make expense transaction but reports are not there.
SOURAV 2020-06-29 20:23:12
Can anybody help me to call a rest api in react and display it in table
D_deepak 2020-06-30 03:31:23
Any one expert there?
2020-06-30 04:17:10
Please which API can I use for centralized bitcoin trading platform
S Sam 2020-06-30 11:12:58
Wr can I get the tax database of world MySQL database?

Anyone plz help

I want the tax structure database

Plz help

It’s urgent

jazz1611 2020-06-30 19:52:03
hello, what software support help beginner dev code?
yunusdjanov 2020-06-30 19:57:37
hello everyone I have #question
<a href=”edit.php?id=<?php echo $row[‘id’] ?>”>
why there is ?id
jazz1611 2020-06-30 19:59:12
yunusdjanov 2020-06-30 19:57:37
hello everyone I have #question
<a href=”edit.php?id=<?php echo $row[‘id’] ?>”>
why there is ?id

can’t help with that Q

Harishz007 2020-06-30 20:05:01
yunusdjanov 2020-06-30 19:57:37
hello everyone I have #question
<a href=”edit.php?id=<?php echo $row[‘id’] ?>”>
why there is ?id

That is query parameter

Harishz007 2020-07-01 18:22:36
What are those Yii and CI
yunusdjanov 2020-07-01 18:23:10
Harishz007 2020-07-01 18:22:36
What are those Yii and CI

php frameworks

Harishz007 2020-07-01 18:23:25
yunusdjanov 2020-07-01 18:23:10
php frameworks

Oh ok

Harishz007 2020-07-01 18:23:43
CI is CodeIgniter right?
kameshindore 2020-07-01 18:38:23
dm me ur curl header content type
kishor10d 2020-07-01 21:33:00
Yii2 is also good, but its ActiveRecord model is tricky.

It is for midsize enterprise level applications

yunusdjanov 2020-07-01 21:45:12
What about Laravel
kishor10d 2020-07-01 21:46:01
Its trending now a days, and having lot of components
2020-07-02 09:42:51
Hii
I want to call api from postman by using php curl and display it using for loop
Please help me
behindfactss 2020-07-02 10:01:32
any one knows about partical function in php
D_deepak 2020-07-02 11:15:12
How to convert ajax response to php array
2020-07-02 12:13:09
If someone,who had worked in codeignitrr…can they easily work in laravel too??
itechsoft 2020-07-02 12:22:22
2020-07-02 12:13:09
If someone,who had worked in codeignitrr…can they easily work in laravel too??

Yeah but it can be complicated because the two framework are not the same

yunusdjanov 2020-07-02 12:30:41
what you tube channels do you recommend for learning php oop and laravel??
E_dd_y 2020-07-02 16:29:56
M a newbie in php development and tomorrow is my interview any topics main that i should
E_dd_y 2020-07-02 16:30:29
Read
Dev 2020-07-02 19:45:45
Oops concept
Dev 2020-07-02 19:46:08
Pattern sums
2020-07-02 20:46:13
first thing they will ask is about frame work so go through that
2020-07-02 20:47:26
at least have basic knowledge of it
yunusdjanov 2020-07-02 21:30:26
if(isset($_GET[‘id’])) {
$id = $_GET[‘id’];
$query = “SELECT * FROM users WHERE id = $id”;
$result = mysqli_query($conn , $query);
if(mysqli_num_rows($result) == 1){
$row = mysqli_fetch_array($result);
$name = $row[‘name’];
$surname = $row[‘surname’];
}
}

if(mysqli_num_rows($result) == 1){ what does this function check?
Is the information coming once or checks that it is not empty?

Dev 2020-07-02 21:34:12
It’s checking the array return is == 1
No duplicate records of same id
yunusdjanov 2020-07-02 21:38:44
Dev 2020-07-02 21:34:12
It’s checking the array return is == 1
No duplicate records of same id

does it checks if the id is unique ?

Dev 2020-07-02 21:39:43
yunusdjanov 2020-07-02 21:38:44
does it checks if the id is unique ?

No it only check if the return number of rows is == 1 or not

yunusdjanov 2020-07-02 21:40:58
Dev 2020-07-02 21:39:43
No it only check if the return number of rows is == 1 or not

ok thank you very much

E_dd_y 2020-07-02 23:18:29
Dev 2020-07-02 19:46:08
Pattern sums

Tysm

2020-07-03 07:38:16
How to use order by for following series

Slno : Q1,Q10,no_data , Q3, Q8,Q5, no_data ,Q13,Q18 ,Q8, no_data ,Q9

2020-07-03 07:39:10
Expecting output is Q18
2020-07-03 07:40:12
I used query like
SELECT slno From master ORDER BY slno DESC LIMIT 1
2020-07-03 07:40:42
But this query returns Q9 as result
2020-07-03 07:42:17
Another query like
SELECT slno From master ORDER BY LENGTH (slno) DESC, slno DESC LIMIT 1

This query results no_data as output

2020-07-03 07:42:56
How to solve this …please help me to find a solution
J J 2020-07-03 13:05:02
Hi, is this the right place to ask a doubt about wp plugin made with PHP?
J J 2020-07-03 13:06:15
Thanks…
J J 2020-07-03 13:06:28
Ok
J J 2020-07-03 13:14:58
Ok…
J J 2020-07-03 13:17:44
It’s not a matter of limit … Something else….
J J 2020-07-03 13:18:06
I am trying to copy paste de msg
|