Posts by Gabriel José • 191 points
14 posts
-
1
votes0
answers151
viewsQ: How to access a method in a Javascript Function at the angle?
I am using a plugin in Jquery and it works very well in Angular, however I want to call a service method within a function of an alert, follows below the code: click event that creates the modal…
-
0
votes1
answer28
viewsA: How to remove the automatically generated gridview table from Asp: Templatefield?
I was able to solve the problem instead of using a Gridview I used a Datalist with the property RepeatLayout="Flow" that way my code went like this: <asp:DataList ID="tabeladobanco"…
-
0
votes1
answer28
viewsQ: How to remove the automatically generated gridview table from Asp: Templatefield?
How to remove the automatically generated gridview table from Asp: Templatefield? I’m using a gridview like this <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false">…
-
1
votes1
answer1636
viewsQ: How to make a query per day, week, month period in Mysql
How do I query for period, day, week, month in Mysql? for example I would like to display data filtered by periods example display data yesterday, last week, two weeks, three weeks, a month ago and…
-
-1
votes2
answers1040
viewsQ: How to disable responsive from a css site
Hello, I wonder if it is possible to disable the responsive of a site in jquery without changing the codes for example force the desktop version on mobile devices! thank you in advance!…
-
2
votes1
answer212
viewsQ: How to include contents of a page . py on another page . py
How do I make a include or open a python page in another, for example in php: include 'content/filename.php'; Load Html it loads the file more .py no, I’ve tried the command open fp =…
-
0
votes1
answer374
viewsQ: problems while running android usb in android studio
Does anyone know why this error is happening I can’t run the application on my smartphone with debugging mode enabled and even with the emulator? someone knows, I am new to android and wanted to…
-
0
votes0
answers51
viewsQ: google freebase api problem
Does anyone know why this google php API doesn’t work? wanted to use this api to spoil data from a page for example: Mark Zuckerberg Programmer Born: May 14, 1984 (31 years), White Plains, New York,…
-
5
votes1
answer1818
viewsQ: How to make a placeholder in a Textbox?
How can I simulate a placeholder using WPF? Something like the input HTML where you click in the field it adds the text and when you change it returns the text? Remembering that it is in WPF,…
-
4
votes1
answer2328
viewsQ: Error Notice: Trying to get Property of non-object when picking the page title
I have a code that should take the title of the page example "Facebook - sign in or register" only that is giving error in this line $title =…
-
-1
votes1
answer617
viewsQ: How to query multiple tables in PHP?
$sele = "SELECT * FROM videos WHERE video_titulo LIKE '%$name%' OR video_chaves LIKE '%$name%'"; $query = "SELECT * FROM usuarios WHERE n_nome LIKE '%$name%' OR n_usuario LIKE '%$name%'"; How to…
phpasked Gabriel José 191 -
2
votes1
answer113
viewsQ: Error showing past time of multiple PHP posts
<?php function timeAgo($time_ago){ $cur_time = time(); $time_elapsed = $cur_time - $time_ago; $seconds = $time_elapsed ; $minutes = round($time_elapsed / 60 ); $hours = round($time_elapsed /…
-
0
votes2
answers658
viewsQ: how to display related posts via php tags
I have a posting system where the user makes a post with the following fields: title, description, tags (separated by comma) as I could make a query in the table through the tags and display the…
-
0
votes0
answers110
viewsQ: How to display the duration of a bd video with the getid3 extension?
<?php Include ("getid3/getid3.php"); $filename="nome_do_video.mp4"; $getID3 = new getID3; $file = $getID3->analize($filename); echo $file['playtime_string']; ?> It’s just that when I try to…