[Solved] php add counter with thousands separator [closed]

Preety straight forward answer for you… <?php $fp = fopen(“counters/counterlog.txt”, “r”); $count = fread($fp, 1024); fclose($fp); $count = $count + 1; echo “<p>Pageview: ” . number_format($count) . “</p>”; // <=== $fp = fopen(“counters/counterlog.txt”, “w”); fwrite($fp, $count); fclose($fp); ?> 1 solved php add counter with thousands separator [closed]

[Solved] How to Create this type of view in IOS? (See in Image)

No need to use any third party library for this :- Navigation bar 1.1 Use that arrow for back button by setting leftbarbuttonitem 1.2 For Progress Bar and progress label you can design separate view and can add it as title view (self.navigationController.navigationItem.titleView) For question and answer, you can use table view 2.1 Question:- Use … Read more