Posts by Leonel Junior • 150 points
11 posts
-
0
votes1
answer26
viewsQ: Best method for categories via php and mysql
I am creating a system with php + mysql. It is a type of social network. I am in the planning part of the database and with a doubt on the best way to record, for example, the skills of the…
-
0
votes1
answer991
viewsQ: Push, via php, for all users
I am working on a project with Ionic 3 and backend in php/mysql. At the current stage I need to send push notifications and chose to work with firebase and phonegap-plugin-push. I installed and…
-
1
votes0
answers276
viewsQ: How to include banner in the middle of the text?
I am rebuilding an old project, written in PHP with Mysql. For practical purposes, consider it as a news portal. In the database there are several articles, which I list on the site by simple query,…
-
1
votes0
answers663
viewsQ: Ionic Login and PHP/Mysql API
I am developing an application with Ionic v1 whose API is in PHP/Mysql and now I need to implement a login system. Since I already have the platform working from the web, it is a social network.…
-
3
votes1
answer5346
viewsQ: Progress bar track mysql query execution
I need a bootstrap bar to track the execution of a mysql query. $limite='200'; // limita $i=1; // para gerar o looping da barra de progresso $y = mysql_query("SELECT * FROM $tabela WHERE x='y' ORDER…
-
4
votes3
answers611
viewsQ: Variable variable in php
I need to generate a variable with arbitrary name. I have the following code, which does not work: $vv = mysql_query("SELECT * FROM $tabela ORDER BY rand() LIMIT 3"); $i=1; while($v =…
-
1
votes1
answer1277
viewsQ: Mysql ignore accents
I am in a project with bootstrap and php + mysql. I have a simple search: $y = mysql_query("SELECT *,date_format(`ultimologin`,'%d/%m às %H:%i') as `ulogin` FROM $tabela WHERE estado='$estado'…
-
0
votes1
answer161
viewsQ: Include data in Json beyond what comes via Mysql
I am building an API in PHP/Mysql that will feed a hybrid APP, also under construction, via Ionic. Data transit is via Json. I guess I’m new to Ionic, Angular, JS, and Json... Reasonable in PHP and…
-
2
votes1
answer109
viewsA: Limit the number of forms to be printed per page
I’m not sure I understand the question but maybe LIMIT will solve. $sql = mysql_query("SELECT * FROM ficha LIMIT 2")or die(mysql_error());
-
0
votes1
answer335
viewsQ: Dynamic links in Ionic, with inAppBrowser
I’m developing an app with Ionic, which consumes an external API (json). To make links that open in the native browser, I added the inAppBrowser plugin and it worked. The point is that some links…
-
1
votes1
answer793
viewsQ: Variable inside quotes - Angular
I am building a hybrid APP with Ionic, this uses Angular and I am not very familiar with JS. The point is that I need to insert a Youtube video into the file and ran into the following question: The…