Questions tagged as 'php'

2
answers

Handling and Error Handling

I want to know how to correctly handle the error handling for a non-mandatory variable, since if it is not informed, a Fatal Error - Undefined Index is generated. Context : Through my system I register a publication (documents for...
asked by 07.04.2017 / 22:23
2
answers

php encoding to mysql database [duplicate]

Well, I'm having a problem with encode when posting data to a table mysql by php , my page is with encode utf-8 , my bank using latin1 , but I do not know how such a conversion, if I change the encode of the site...
asked by 14.12.2016 / 02:50
2
answers

Request Form AJAX is updating page

I'm making a simple form to be submitted with jQuery Ajax. Data is being sent, but you are updating the normal page. I would like to know what I am doing wrong, because in submitting the form the page is being updated, but I would like this n...
asked by 13.12.2016 / 18:34
1
answer

Why is the second WHILE not working?

$consulta = "SELECT * FROM 'teste' WHERE id='1' "; <div class="box-header"> <h2><?php while($d = $con->fetch_array()){ ?> <?php echo $d["cnpj_cpf_tab_clientes"];?> <?php echo...
asked by 29.03.2017 / 17:41
1
answer

Error in PHP ... Fatal error: Uncaught Error: Call to a member function modify () on boolean

Personal I have a PHP script that adds another 10 days to a date. The script was working wonderfully well, however, a few days ago I started getting the following error:    PHP Fatal error: Uncaught Error: Call to a member function modify ()...
asked by 31.10.2018 / 13:43
1
answer

Error verifying user duplication

I wanted to prohibit the user from registering two identical users, type two equal emails or enrollment, but is still being registered data already exists, After I press register and send the data to the bank appears this error:    Notice: Un...
asked by 31.10.2018 / 20:50
1
answer

Create blog from scratch without using wordpress [closed]

I need to create a blog without using wordpres or any other ready structure, what language I can use and what is the fastest way to do it, the blog has a form that will save e-mail , nome completo and ip da pessoa , I already...
asked by 04.10.2017 / 06:25
1
answer

Singleton pattern causes error: Using $ this when not in object context

I made this Singleton pattern that I saw on a site and found it great, well what I wanted. However something is going wrong because I have the error: Fatal error: Uncaught Error: Using $this when not in object context in /opt/lampp/htdocs/mysc...
asked by 04.10.2017 / 21:12
2
answers

Slicing strings from right to left

I have a column in the database with the name of codigo , in which the formatting looks like this: 18000001 Where 18 means the year we are and 1 is the code for each result. Knowing that this code can be greater than 1 I type 1...
asked by 07.05.2018 / 15:10
1
answer

Search in different tables knowing which came the result

I am trying to search for a term in 4 different tables in MySQL, using like , but I need to retrieve the id of each one and identify which table came to do the listing and direct with link. This is a search system where the result...
asked by 04.11.2016 / 16:22