Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #4K
~5K People Reached
Favorite Tags
Member Avatar for 2mhzbrain

<?php require 'includes/verifycred.php'; ?> <!DOCTYPE html> <html lang="en"> <head> <title>Technology</title> <meta charset="utf-8" /> <link rel="stylesheet" href="style.css" type="text/css" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <script type="text/javascript" src="wysiwyg.js"></script> </head> <body class="body" onLoad="iFrameOn();"> <header class="mainHeader"> <nav> <ul> <li> <a href="adminpage.php">ADMIN PANEL</a> </li> </ul> </nav> </header> <?php include 'sideBar.php' ?> <div class="content"> <article class="topcontent"> <h3 …

Member Avatar for 2mhzbrain
0
249
Member Avatar for 2mhzbrain

The code below is from tutorial, my problem is my work dont work and the video tutorial is corrupted, i missed something for sure, the WHERE `articles_id`='$update_id' condition in query is not working, it wont find the corrent id to be editted. Please help. <?php require 'includes/verifycred.php'; ?> <!DOCTYPE html> …

Member Avatar for patk570
0
197
Member Avatar for AARTI SHRIVAS
Member Avatar for matrixdevuk
0
373
Member Avatar for 2mhzbrain

<div> <?php include 'connect.php'; if(isset($_GET['id'])){ $page_id = $_GET['id']; $select_query = "SELECT * FROM articles WHERE articles_id='$page_id'"; $run_query = mysql_query($select_query); while($row=mysql_fetch_array($run_query)){ $articles_id = $row['articles_id']; $articles_date = $row['articles_date']; $articles_title = $row['articles_title']; $articles_category = $row['articles_category']; $articles_image = $row['articles_image']; $articles_content = $row['articles_content']; ?> <h3> <a href="articlespage.php?id=<?php echo $articles_id; ?>"> <?php echo $articles_title; ?> </a> …

Member Avatar for 2mhzbrain
0
294
Member Avatar for 2mhzbrain

Is it posible to connect my vb6.0 program to a wamp(mysql, myphpadmin) server on my pc. If i use my program to other part of our country, can i still connect to the wamp server? This is my challenge for a job, the IT personel from a company i am …

Member Avatar for ikocrush
0
898
Member Avatar for 2mhzbrain

this is the table ITEM QTY UNIT rod1 50 cm rod1 1 m rod1 50 cm rod2 25 cm rod2 75 cm rod2 1 m this is the result i want user can see ITEM QTY UNIT rod1 2 m rod2 2 m this is tricky for a newbie, please …

Member Avatar for GeoEqual
-1
155
Member Avatar for 2mhzbrain

Dim siar As Integer, siac As Integer Set SIATable = SIADoc.Tables.Add(SIADoc.Bookmarks("\endofdoc").Range, rs.RecordCount, 7) SIATable.Range.ParagraphFormat.SpaceAfter = 0 SIATable.Range.Font.Underline = wdUnderlineNone SIADoc.Tables(1).Borders(wdBorderTop).LineStyle = wdLineStyleSingle SIADoc.Tables(1).Borders(wdBorderLeft).LineStyle = wdLineStyleSingle SIADoc.Tables(1).Borders(wdBorderBottom).LineStyle = wdLineStyleSingle SIADoc.Tables(1).Borders(wdBorderRight).LineStyle = wdLineStyleSingle SIADoc.Tables(1).Borders(wdBorderHorizontal).LineStyle = wdLineStyleSingle SIADoc.Tables(1).Borders(wdBorderVertical).LineStyle = wdLineStyleSingle For siar = 1 To rs.RecordCount For siac = 1 To 7 SIATable.Cell(siar, …

Member Avatar for 2mhzbrain
0
198
Member Avatar for 2mhzbrain

Dim oWord As Word.Application Dim oDoc As Word.Document Dim oTable As Word.Table Dim x As Integer Set oWord = CreateObject("Word.Application") oWord.Visible = True Set oDoc = oWord.Documents.Add Set rs = New ADODB.Recordset With rs .Open "SELECT * FROM ClientTable", cn, 2, 3 Dim r As Integer, c As Integer Set …

Member Avatar for 2mhzbrain
0
228
Member Avatar for 2mhzbrain

Please help, i do not know whats causing the problem... Dim miqty As Double Dim mitc As Double Dim siqty As Double Dim sitc As Double Dim diffqty As Double Dim difftc As Double Dim dvqty As Double Dim dvtc As Double dvqty = dynavqty.Text dvtc = dynavtc.Text Set editSIrs …

Member Avatar for 2mhzbrain
0
211
Member Avatar for 2mhzbrain

experts please help on querying and counting the frequency of data, i want to count the number of data appearance then put it on like this: Name----Lastname----Relationship----Freq Egie----Tayag-------Brother---------2 i will place the result on a report counting the number of a person's visit on the theme park. TIA ^_^ SELECT …

Member Avatar for 2mhzbrain
0
150
Member Avatar for 2mhzbrain

Its all in the title, i want to get 2 dates from user then view them in a data report text labels so we have idea what the report is displaying

Member Avatar for bCubed
0
263
Member Avatar for 2mhzbrain

Sirs, please suggest a good way to handle large amount of data. This is my newbie idea: - create a database on one of high powered pc(dedicated for whole company) - then sync every changes to another copy of this database to the online hosting service with security note: theres …

Member Avatar for drjohn
0
413
Member Avatar for 2mhzbrain

i connected and migrated all the things from access to mySQL (online) using free hosting on the net, when i make my simple program to .exe, then run it on different computer, its asking for some OCX and dll files... why is that happening? my .exe program run well on …

Member Avatar for 2mhzbrain
0
275
Member Avatar for 2mhzbrain

Please show me what is the correct code to compare the DateAdded (2012-12-26 00:00:00 - its format inside MySQL) and DTPicker (01-01-2000 default format from user input) Sub FilteredQuery() cnDDR.Open "Driver={Mysql ODBC 3.51 Driver}; server=x; port=3307; database=x; user=x; password=x; OPTION= 1 + 2 + 8 + 32 + 2048 + …

Member Avatar for AndreRet
0
432
Member Avatar for 2mhzbrain

WHERE Category = '" + CategorySorter.Text + "' AND DateAdded = '" + DateValue("DateEnd.Text") + "' " thats my query and its not working, if the user input a date(like this 12/25/12) in DateEnd.Text, i want to confirm if it is existing on a database

Member Avatar for AndreRet
0
253