I am using Resellers Panel API. I am trying to create a simple order form in PHP. I am following this documentation : https://cp.resellerspanel.com/downloads/ResellersPanelAPI.pdf I manage to go this far. It accepted all the inputs fine. until I got to the domains. it gives me these error. No type provided fo…
Error getting Query Data from MySQL with PHP [closed]
Having an issue getting the MySQL Data in my Database. I don’t know if the code is fine or I have missed something, please give me an idea of how to get the data from my database. This is my Query in …
Update ACF User Radio Button After Gravity Form Submit
having a issue with getting a ACF field associated with a user profile to update after a gravity form submission. As it stands, this logic currently does nothing :(. So i’m hoping someone can help out. Here is waht I have so far: So it should be pretty straight forward I would image, but it just seems t…
how can i ban some numbers from checking on bot
like if someone type command “!user 123456” then send message “number banned” I tried this but won’t worked… $ban = array(‘112233′,’123456’); if(strpos($message, “!user $ban”) ===0){ sendMessage($chatId, “<u>Number Banned!<…
PHP MySqli show result for similar terms (Keyword)
Let me explain fast what i want to do! I want to show similar rows from my database by a PHP term. I have a table called “games” and a column called “title” that titles are looks like “Rockstar – GTA V”. So i want to remove all words after dash and use new string as k…
How do I create a eloquent Polymorphic relation
I have a two eloquent models model User and Retailer. I want to create a new model “Task” where there there should be a field “added_by” which can denote either a user or a retailer. How can I create the migration for Task so that there is a field that can denote either user or retaile…
how could I link my HTML project to laravel? [closed]
Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed last year. Improve this question I’m trying to create a webpage using laravel but there’s not a lot of info online …
Why is the following SQL Query returning an empty result?
I have the following table structures: 1 – Course(course_id, course_nam, language, course_price, create_date, average_rating, category, course_description, certifica_price, course_creator_id) 2 – Student(student_id, wallet) 3 – Discount(discount_id, discounted_course_id, allower_course_creat…
laravel ignore return redirect()
hi guys i’m trying to redirect user to bank but laravel is ignoring my return redirect in here i’m calling pay() in zarinpal class : at the end of redirectToBank() user must redirect to bank but it is ignoring redirect and is returning $order in cheackout() Answer I think that the redirect returns…
How to find value?
I make this associative array with PHP. Now by using array_rand() function => The Output is: [0] => a [1] => b This output shows me only the key of the array. But I want to see the value too. How can I find the value of this array using array_rand()? Answer Use the keys to access the original array