Skip to content

Tag: php

Number formatting (Money) in PHP

I’m trying to format numbers with not decimal points or commas, I’ve tried number_format() and money_format() and can’t seem to get the result I need. number_format($item->amount,2) Result: 14,995….

Why is my validator is not validating in Laravel?

Why is my validator is not validating the input-email field, it accepts anything! This is my controller to update the database. The name in form is correct Edit: This is my entire code, I post here my code with just email but one guy said that is working, so why this is not working with my entire code of upda…

PHP, cURL request not fetching data

I want to get some informations through github API, i tried to use file_get_contents and it does not seem to work, so i moved to cURL, it does not give an error but it’s not returning anything PHP …