Posts by carlos coelho • 128 points
13 posts
-
0
votes1
answer191
viewsA: Generate different colors Google Chart
Resolved - Resolution To use custom colors in the chart, you need to pass them in the config array as shown in the API: https://developers.google.com/chart/interactive/docs/lines#fullhtml Within the…
-
0
votes1
answer191
viewsQ: Generate different colors Google Chart
I’m having doubts about how to generate colors directly in config when executing the code and where to add colors to be generated , if in this case I should generate another graphic array ?…
-
0
votes1
answer38
viewsA: Modal Does Not Return Database
Ja tentou com foreach ? <select name="category_id" class="form-control"> <option value="">CATEGORIA</option> <?php foreach ($medics as $p): ?> …
-
2
votes2
answers760
viewsQ: Help with mysql Kurdate()-1
I’m getting this mistake: #1064 - You have an error in your SQL syntax; I’ve tried so many ways, but there’s always this mistake. Here are two of my attempts: SELECT `category`. * , `event`. * FROM…
-
0
votes1
answer43
viewsQ: return help with Json
How to return array with these results in php points total 25779 HTML 1793 CSS 2666 Design 216 C# 0 Databases 0 $minhaarray [] = array( "points"=>$event->total, "name"=>$category->name,…
-
-1
votes1
answer132
viewsQ: How to Merge 2 SELECT statements
How to unite these 2 selects? MY TABLES EVENT TITLE DESCRIPTION CATEGORY_ID CATEGORY NAME COLOR ICON DESCRIPTION this select below works perfectly does the right Count I need to do the same without…
-
0
votes3
answers944
viewsA: Add Text In textbox at a certain position C#
private void button1_Click(object sender, EventArgs e) { int h =3; Button newButton = new Button(); Button[] buttonArray = new Button[8]; for (int i = 0; i <= h-1; i++) { buttonArray[i] = new…
-
2
votes2
answers276
viewsQ: How to use INNER JOIN?
I have a table called Event and another call Category need to count amount of categories coming from event->category_id, but I need db to understand and read. TABELAS **event** |**Category_id**…
-
0
votes1
answer214
viewsA: doubt with file download
var files = Directory.GetFiles("C:\\path", "*.*", SearchOption.AllDirectories) List<string> imageFiles = new List<string>(); foreach (string filename in files) { if…
-
1
votes4
answers232
viewsA: How to change the date order of an implode from a jquery datepicker
$( ".selector" ).datepicker({ changeYear: true }); / Getter var defaultDate = $( ".selector" ).datepicker( "option", "defaultDate" ); // Setter $( ".selector" ).datepicker( "option", "defaultDate",…
-
1
votes1
answer120
viewsQ: As I give echo in array
public static function getAllCount(){ $sql = "SELECT COUNT(Title) from ".self::$tablename." GROUP BY category_id"; $query = Executor::doit($sql); return Model::many($query[0],new EventData()); }…
-
1
votes2
answers1846
viewsA: Sending multiple attachments by Email
if (isset($_FILES['file']['name'])) { $count = count($_FILES['file']['tmp_name']); for ($i = 0; $i < $count; $i++) { $mail->AddAttachment($_FILES['file']['tmp_name'][$i],…
-
1
votes1
answer378
viewsQ: C# Help to Load External DLL PNG Sources
I created the Dll of Sources with IPNG magens in C# when I compile to read in PictureBox of Visual Studio I receive the news of NUll or of missing System.Resources.MissingManifestResourceException'…
c#asked carlos coelho 128