Can you answer these questions?
View all unanswered questionsThese questions still don't have an answer
phpfpm and apache configuration not working
Convert CSV file in an Symfony entity
How to add the dynamic new rows from my registration form in my database?
Doctrine One-To-One with UUIDs not working - FK is always null
Issue in payment form gateway
Looking for an extra challenge?
View all bountied questionsThese questions have a bounty on them
How to create initial Object with Symfony serialization
Error counting posts of a category in WordPress
Recommended answers
View all recommended answersThese answers have been recommended
Laravel Relationship Using An OR Condition on the joining field
I'm not sure. Is this what you were asking for? UserConnection::where(function ($query) { $query->where('from_user_id', $this->id) ->orWhere('to_user_id', $this->id); }); ...
how to remove <p> tag when writing to textarea in laravel
You can use PHP strip_tags() (w3schools) {!! Form::textarea('TaskDsc', isset($TaskDsc) ? strip_tags($TaskDsc) : null, ['style'=>'height: 113px;width:150%;','class'=>'p-2']) !!} The isset() ...
How to check if ConvertEmptyStringsToNull::class middleware is registered in Laravel 11
The App\Http\Kernel class was removed from the Laravel 11 skeleton application, but the Illuminate\Foundation\Http\Kernel class is still used by the framework. Additionally, as seen in the index.php, ...
How to get 5 LEVEL hierarchy users from database using PHP and MYSQL
There are a few small problems: $result = array(); is a typo and should be $results = array(); $stack = array($id); needs to be $stack = array([$id]); because when you write $stack[$i-1] then it ...
PHP perl regular expression - URL not preceded by equal sign and possible single or double quote
One way to work around this is to use an alternation, the first part of which matches URLs which are preceded by = (and an optional quote), and the second which just matches URLs which are then ...
See what's trending
View all trending questionsThese are the most active questions in PHP Collective
How can I prevent SQL injection in PHP?
Reference Guide: What does this symbol mean in PHP? (PHP Syntax)
How do I check if a string contains a specific word?
How do I get a YouTube video thumbnail from the YouTube API?
Deleting an element from an array in PHP
Evolution of Type Declarations in PHP
Start learning PHP—Useful resources for beginners and advanced
Simply submit a proposal, get it approved, and publish it.
See how the process works