Sorry for this question I think it’s not difficult but I’m new to PHP, I tried to show some images of products with the link, If the item is available $row[‘p_status’]==’1′ ok the link will be opened …
Tag: php
Can I add a button to this area of wordpress?
Can I add a button to this area of wordpress? picture of the section i want to edit How can I add a button with php to this field where there is a text and page editing screen? I want to do …
Laravel Yajra Datatables [object Object],[object Object] Error
Recording data in array format to database workers column. I would then return this data in the appropriate JSON format. My problem is just getting the spname values from the nested array in the …
POST 404 not found on submit Vue js and Laravel?
I’m new to Vue js. I’m trying to store data. I’m loading in welcome.blade.php:
<router-link …
Clean emoji in input
How can I clean my form inputs for characters like emojis? For example, when I post a paragraph in a text area with an emoji like this ????, a Record does not gets inserted to database. I can not change …
How to append data obtained from database to array?
I would like to append data(“username”) from database to array(“array1”) and write all items from array. I have marked problematic part of code. If I run this code, I see: What can be wrong? Output …
Check user’s each request after user logged into the with conditions in Laravel 6.18
Ok let me explain my requirement shortly. I have a portal where suppliers can register and add their content to our site. Usually, registration has 5 steps where after the supplier completes the first …
Is the sending of data to moodle REST API limited?
I’m using moodle 3.5, I’m trying to send an array of 2308 (user/corresponding cohort) to the external function ‘core_cohort_add_cohort_members’ by POST, the answer of the API is : array(3) { [“…
How to save csv file in /public folder using laravel?
I am trying to save a csv file and download it. To download I used the following code. $export = implode(“,”,$header).”n”; foreach($data as $key=>$val) { $export .= implode(“,”,$val).”n”; }…
I’m not using count but my log told me “count syntax error”
I have a request who look like this in PHP: SELECT CONTACT.NOM, CONTACT.PRENOM, CONTACT.TITRE, CONTACT.COMMENT2, CONTACT.TEL, CONTACT.FAX, CONTACT.EMAIL, SERVICES.NOM …