Hello,
I'm starting to study the MVC standard for PHP. I have read several questions here in StackOverflow, I have already studied the Laravel documentation and read several articles.
I chose the concept covered in this post as a basis -...
I'm doing tests with curl_init php
I happen to have the links like this:
http://localhost/produto/novo
Internally it accesses the new.php file, but I'm using htaccess to work with friendly URLs
I need to make a file that will accept q...
I'm doing a question game in PHP, the user will have 15 seconds to answer each question, how to prevent the user from changing the timer via inspect element and add seconds?
Just adding details, it is impractical to let the user change the ti...
I'm using Zend and I have the following function:
public function getChamado($id) {
try {
$cols = array(
'id', 'titulo', 'descricao', 'fk_status', 'fk_local',
'fk_tipo', 'created', 'modified', 'finished', 'fk_usuario',...
I need to connect to a Progress database via php I'm using the laravel 5.2 framework but the same documentation supports only the MySQL, Postgres, SQLite and SQL Server databases.
Searching I found very little about how to connect to this DB...
I need to create a screen that automatically calculates the expiration dates of the experience agreement.
The user types the start date and shows me the date the contract expires in case 45 days or 90 days.
Could anyone give me a tip?
Than...
Good afternoon everyone!
I did research before asking the question, but I did not get an answer for my doubt in any of them.
I need help getting the following code to receive the two dates by the $ _GET variable, example (.php? data1 = 23-0...
I am doing stock control system, and I would like to know the advantages and disadvantages between two ways of implementation to do the subtraction of the number in the stock after a sale / exit.
1) Do a% direct update in the application t...
I have a value in the mysql database that contains some html commands like:
<b>Olá</b>
<br>
Other ...
I need to display the value using <?php echo $row_rs['original']; ?> to ap...