Skip to content

Cannot hide gridlines Google Spreadsheet API PHP

I am trying to hide all gridlines from a file I just created with Google Sheets API, I am using the following code: $service = $this->GoogleServiceSheets(); $sheetID = null; $worksheetSheets = $…

Get href on click and redirect with shortcode

I’m working with this idea: get href onclick and redirect with link Because i need a link redirect to another page. My problem is that the second page is dinamic. For it, i use a shortcode. But im not know how i can do for it works. The var yourHTML is not working. Answer You should use event.preventDef…

cURL contains an invalid cURL option

I was upgrading from PHP 7.4 to PHP 8 and suddenly this errors appears in my cURL request: I use the following code to build the curl: The targeted file is always an php extensions. ‘buildPostFields’ returns an array of the data. Probably this errors accours because of my php upgrade to version 8,…

How to make html code less repetitive using PHP?

I have a slider with various elements in it and when clicking on a button on a particular element will open a pop-up contain specific details to that selected element. Now my slider is becoming really …