This is the URL that I want to parse: http://www.tsetmc.com/Loader.aspx?ParTree=151313&Flow=0 I use simple_html_dom.php but it can’t read the HTML because the HTML is encoded. So I think I should parse online and webpage source. Is there any way that I can parse this web site? The source code looks …
Tag: php
Adding class to Opencart action file
Actually I am trying to add class (Controllerjournal3flashsale) to action.php I want this class because I am using dynamic block from journal 3 theme and it’s not working when i add block under layout …
++ & — issue using jquery for same Submit button for Cart Product quantity(Php)
I have some problems during working with cart product ++ and — using jquery and form submit on button click also but only first cart product working correctly and another not working because Id issue …
How to save file txt using html and php
i try to save textarea in html to file (“C:xampphtdocstest1one.txt”) so i figure out i must use php too. this php code, it work fine $fp = fopen(‘one.txt’, ‘w’); fwrite($fp, ‘edit me please’); …
How to hide the whole span if there is no file in “href” direction
I have problem with hiding empty links.. please can someone help me.: <a href="/sunsetplanlama//kumas_1.png” data-lightbox=”kumas” data-title=”<?php …
PHP form issue after submit
ill try to submit this form: getSelfActionLink()}]cl=subtel_account_extend_bill_details” method=”post”> <input type="…
how to create a contruct() in codeigniter4 controller?
class Home extends BaseController { var $cache; public function __contruct() { parent::__construct(); $this->cache = ConfigServices::cache(); } public …
Check if Coupon exists and if it is the first order
In my e-commerce I have implemented coupons, and it is working, but now I introduce “Coupons first order”, but don’t know if I’m doing the best way to check it, because it is not working, my query is …
SQLSTATE[23000]: Integrity constraint violation: 1048 Column ‘feature_item’ & ”status’ cannot be null
in my form when i checked the checkedbox there is no error .but when i don’t want to check the checkedbox, I am getting the error SQLSTATE[23000]: 1048 Column ‘feature_item’ & ”status’ cannot be null. 1.my products table:- 2.my product.blade.php This is my form 3.my ProductsC…
If variable contains word, show it and get line number
So I trying to check “if text file on server contains word, show it and display his line number” but i only know how to check “if text file contains word”. Anybody have sugesstions how to do it? I saw …