Posts by Felipe Jorge • 1,479 points
70 posts
-
1
votes1
answer646
viewsQ: HTML editor made in HTML
I need an HTML editor, like this one http://www.quackit.com/html/online-html-editor/full/ to change between visual mode and HTML mode. The problem is that I google, I search for ready-made codes and…
-
1
votes2
answers1027
viewsQ: Place an HTML tag on the </body> using string (PHP)
Hello I am making a software to send Emails in PHP. One has a form and she sends HTML by a link. But here I will put a simple HTML. $texto = "<!DOCTYPE HTML> <html lang='pt-br'>…
-
3
votes2
answers1784
viewsQ: Take the line break in a file and put the content in a variable
I’m picking up a PHP file. $arquivo = file_get_contents($_FILES['arquivo']['tmp_name']); I want to know how I do to get this file and put it in a array for every line break he finds \n. for example:…
phpasked Felipe Jorge 1,479 -
0
votes3
answers9623
viewsA: Cannot send Session cache Limiter in session_start()
The section should be started at the beginning of the code, if there is any string before you start the section it will give error. You need to finish the section before logging in with another…
phpanswered Felipe Jorge 1,479 -
2
votes3
answers766
viewsA: "Smart" columns in Mysql
You could create another table to make it more dynamic. For example: CREATE TABLE IF NOT EXISTS `sua_tabela` ( `id_tabela` int(11) NOT NULL PRIMARY KEY /*Os outros campos da tabela vai aqui*/ ) The…
-
3
votes2
answers199
viewsQ: Can I open a dll extension without entering php.ini?
I need to use the php_openssl.dll, but I don’t have access to php.ini, the server is foreign and also the support is difficult to access. extension=php_openssl.dll Is there any way to use it without…
phpasked Felipe Jorge 1,479 -
0
votes4
answers2818
viewsA: Email falls into PHP spam box using HTML layout
If you have very complex HTML content, google will spam that content. In this case the problem is not in PHP but in html layout. In case before sending to multiple people, it would be interesting to…
-
0
votes4
answers2818
viewsQ: Email falls into PHP spam box using HTML layout
I registered three emails in my database, but when I send the email it falls into the spam box. I don’t know what I should do not to fall as spam. In case the content of the email is an email…
-
2
votes2
answers2501
viewsQ: How to echo a php file?
I’m looking to create a simple email marketing server. So for this I have to take the content of an HTML and save a variable in PHP. This is my form. <form method="post" action="email.php"…
-
14
votes2
answers445
viewsQ: E-mail marketing, theoretical
I want to remind you that this question is not a question of opinion, but based on experience. This question is just to get an idea of how to create an e-mail marketing, more detailed and specific…
emailingasked Felipe Jorge 1,479 -
1
votes1
answer308
viewsA: License of the Phonegap
In the free version you can have only one private app, if the limit reaches you are required to leave the code free on github. Follow the table in the link: https://build.phonegap.com/ It will just…
-
7
votes2
answers31518
viewsQ: Picking the first characters of a string
How I replace a string in Javascript? I’m taking the name of the page. var str = window.location.pathname; The name of the url is "/checkout/9/finalizacao" I want to change to "/checkout/" In the…
javascriptasked Felipe Jorge 1,479 -
2
votes1
answer178
viewsQ: noClonflict() jQuery - No longer works
Hello, I was using jQuery’s noClonflict() to not have conflict with the site http://www.casadoboteco.com.br/ Initially it worked, but after a few days is giving trouble again. It is giving conflict…
-
2
votes2
answers2228
viewsQ: Is it possible to compile for IOS using Delphi XE7 on Windows?
Hi I was wondering if it can compile for IOS using Delphi XE7 on Windows, When I try to compile it tries to use the "Create a Connection Profile". Is it mandatory to have a Mac to compile for IOS?…
-
12
votes4
answers15034
viewsQ: Difference between mysql_connect() and mysqli_connect() functions in PHP
I wanted to know the difference between the two and which is the best one to use. $x= mysqli_connect("localhost","my_user","my_password","my_db"); $y= mysql_connect("localhost", "my_user",…
-
4
votes2
answers267
viewsQ: My site does not appear in google search engines
Hello, there is a similar question here, but it does not have a valid answer and I believe that the reason his site does not appear in the rank may be different from mine. Anyway, the site…
seoasked Felipe Jorge 1,479 -
1
votes1
answer1489
viewsQ: How to make the menu appear in bootstrap in mobile resolution without clicking the button?
Can anyone help me with css to leave the menu already activated like this when it goes into mobile resolution? http://guiapetsaocarlos.com.br/ When you are in small resolution, it opens an icon to…
-
1
votes1
answer1944
viewsQ: Error 505 when installing Google Play App on Lollipop
I’m a developer and I’m having trouble installing an app in the Lollipop version. I did some research and I believe it’s a duplicity error Packages, ie have two Apps calling the same package (but…
-
-3
votes1
answer225
viewsQ: Copyright error
I’m trying to publish an app on Google Play, the first time said it violated the terms of Youtube, then I changed and removed the Wordpress app that used Youtube. No more error, but now you’re…
google-playasked Felipe Jorge 1,479 -
0
votes1
answer324
viewsQ: PHP and Wordpress, run a script every time you make a new post
Hello, I’m needing that every time I make a new post on Wordpress run a script. I don’t want to waste time making apps, just want to know which page is responsible for sending the posts in…