I’m having a problem here in solving a problem, I have a popover that takes the information from the database is possible if there is nothing posted in the “note” field, does it change the …
Tag: html
PHP calendar to block some not available dates
I’m designing a little PHP calendar for a little booking system. The final feature is to block some not available dates, that I have stored in a PHP array. What is the best way to achieve this? Please I need some recommendations about how to do this. Thanks if I have an array in php with dates in this f…
Efficient Site Structure
I need to make some websites for work. I am new to it, so I am going pretty basic with bootstrap. There are a number of pages that will be identically structured, just with different text and links. …
How can I auto populate previously uploaded file using html and php?
I want my previously uploaded file to be automatically selected while I am editing details which also include file upload. I have used value attribute as in other types. But this doesn’t work. I have to select the required file again while I am editing details. No file is selected as default while editi…
How to fix my CRUD not working in Update PHP MSQL
I tried to implement CRUD in m website but I am able to make Create, Read and Delete. However, something went wrong during developing the Update function. Can anyone help me? I will provide the code below. The code is used to update the users information if the logged in person is an Admin. Thank you. Answer …
Codeigniter : on selection of a value from drop down change value of checkbox
I have 3 tables say:- invoice_details, customer_details and bill_address. The invoice form has a dropdown and a checkbox. Customer names are listed in the dropdown from the customer table. And when I …
Include html file with image using PHP
I am a newbie in website development. here is my problem : I have 2 HTML files. they are ‘index.php’ and ‘header.php’ . I try to include ‘header.php’ in to the ‘index.php’ using this code : ‘index.php’…
AudioContext Web audio API not working in IE(11)
I am building a website, in which there is a feature to play audio in one earbud rather than in both earbuds on every page reload, all of the code is working fine in Google Chrome, Firefox, Microsoft Edge, but not working in IE(11). I have been stuck in solving this bug but it’s always showing the follo…
codeigniter 4 – Controller or its method is not found
it’s running fine when i tested in local server, but when i uploaded 000webhost server to it’s showing an error. an error My Routes: my routes : can anyone helping me? my controller an error i try to hide detail’s method in url, it’s running fine in local server but why it’s show…
How to send message to selected user with their name laravel
I’m trying to send a message to selected users with their names. So let’s say I have two users Ethan and Calvin then the message should start like User1:(Hi, Ethan), User2:(Hi, Calvin). So far the message is like (Hi, Ethan,Calvin) for every user. How can I fix this? Blade Controller Answer It loo…