mr_kindred23 Posted May 14, 2011 Share Posted May 14, 2011 ask ko lang...which is better in terms of "job-work issue" I mean ano ang mas malakas or yung mas demanding in IT work field....computer programming ba or networking or hardware stuff....system programing...network programming or web programming...etc....ano pwede nio advice...thanks in advance!!! Quote Link to comment
haywire48 Posted May 14, 2011 Share Posted May 14, 2011 Wordpress is easier for simpler projects, but is more suited for web sites like forums. Joomla can be used for a wider variety of web sites, but isnt that simple to use and configure. I have used Joomla, and am starting to use Wordpress. thanks for your sound advice Mr_Mister, how about the maintenance cost of the website do adsense work/:rolleyes: Quote Link to comment
phoenixneo Posted May 15, 2011 Share Posted May 15, 2011 Mga Masters, Pwede nyo ba ako tulungan i-convert itong code from VB6 to VB.NET (2010 Express)? I developed kasi a program for private schools at gusto ko i-upgrade ang code to .Net pero I am having problem sa coding ng ADO to ADO.net Here is the code I use: Public Conn As New ADODB.ConnectionPublic Rs As ADODB.RecordsetPublic Fld As ADODB.FieldPublic ConnStringDim Arr_Enrollees()Dim Ctr Private Sub Form_Load() ConnString = "DRIVER={MySQL ODBC 3.51 Driver};SERVER=localhost;DATABASE=littleangel_db;UID=pss;PWD=pss;OPTION=3;" Set Conn = New ADODB.Connection Conn.ConnectionString = ConnString Conn.Open Set Rs = New ADODB.Recordset Rs.CursorLocation = adUseServer with Rs Ctr=0 .open "select count(*) from file_enrollees", Conn redim Arr_Enrollees(.fields("count(*)"), 2) .close .open "select * from file_enrollees", Conn if not .eof then .movefirst Ctr=0 do while not .eof Arr_Enrollees(Ctr, 0) = .fields("enrollees_fname") Arr_Enrollees(Ctr, 1) = .fields("enrollees_lname") .movenext Ctr= Ctr + 1 loop end if .close .open "select * from file_enrollees", Conn, adOpenStatic, adLockOptimistic .addnew !enrollees_fname = "Juan" !enrollees_lname = "Calintong" .update .close end withEnd Sub Sana merong makatulong maka-explain ng simple kung paano ma-convert itong example to VB.Net / ADO.Net Thanks in advance BTW. MySQL pala gamit ko Quote Link to comment
virtuoso2022 Posted May 19, 2011 Share Posted May 19, 2011 guys do you have vb.net lessons? pls share. ty Quote Link to comment
v150 Posted May 21, 2011 Share Posted May 21, 2011 Hangga ako sa mga programmers..... tiyaga ninyo Quote Link to comment
phoenixneo Posted May 25, 2011 Share Posted May 25, 2011 Mahihilig kasi magpuyat kaya gumagawa ng magagawa. Isip mag program... den pahinga utak konti... bukas xxx mag mary... pahinga... isip ulit. Di ba exciting maging programmer?! hehehe! Quote Link to comment
knup24 Posted June 2, 2011 Share Posted June 2, 2011 mga bro, sino nka gamit dto ng MS ACCESS (as Fornt end) MySQL (back end database)ano mga pros and cons dto?sa napansin ko ung image dko ma retrieve sa MS ACCESS as front end...tnx Quote Link to comment
Guest djunya2006 Posted June 3, 2011 Share Posted June 3, 2011 Good morning, sorry in advance kung OT ako, gusto ko lang malaman kung pwede akong makahiram nang full version nang Windows XP. My current OS is Vista which unfortunately will not run the information that I need. Kindly assist me please. Quote Link to comment
prutkeyk Posted July 7, 2011 Share Posted July 7, 2011 I'm back! let's make this thread alive and kickin! Quote Link to comment
nolz Posted July 10, 2011 Share Posted July 10, 2011 mga bro, sino nka gamit dto ng MS ACCESS (as Fornt end) MySQL (back end database)ano mga pros and cons dto?sa napansin ko ung image dko ma retrieve sa MS ACCESS as front end...tnx i wrote a software in visual basic 6 using ms access as database. it was not very reliable. sometimes records were deleted without apparent reason. Quote Link to comment
redditor Posted September 14, 2011 Share Posted September 14, 2011 mga bro, sino nka gamit dto ng MS ACCESS (as Fornt end) MySQL (back end database)ano mga pros and cons dto?sa napansin ko ung image dko ma retrieve sa MS ACCESS as front end...tnx MySQL is free, powerful and easy to use. MS access - NO ONE USES MS ACCESS. Quote Link to comment
bulolski Posted September 15, 2011 Share Posted September 15, 2011 good morning expert...hope you can help me with this one... what this code do is that it runs a query base on the variable entered by user...and from the query result, one of the col must have a urlencode(link) to another .php the problem is, instead that the result of the query will be displayed with link eh ang lumalabas is the assign variable with link.. can any one help me? ---------------------code----------------------------<?php$connect = mysql_connect("localhost","root","") or die ("Couldn't connect");mysql_select_db("xdb") or die ("Couldnt find db"); if (isset($_GET['first']) || ($_GET['last'])){ $first = $_GET['first']; $last = $_GET['last']; $query = @mysql_query("Select * FROM masterlist WHERE last LIKE '$last' && first LIKE '$first%' order by first asc"); while($row = mysql_fetch_assoc($query)){ $valid = $row['archive_desc']; $hhid = $row['hh_id']; $por = $row['Poor']; $fn = $row['first']; $ln = $row['last']; $mn = $row['mid']; $ext = $row['ext']; $bday = $row['birthday']; $rel = $row['relationship']; $city = $row['city_name']; $brgy = $row['brgy_name']; $datin = $row['Date Interview']; $prov = $row['prov_name']; $respo = $row['Respondent']; echo '<tr><td><a href = "family_comp.php?hhid = ' . urlencode($row['hh_id']) . '"/a>$hhid</td><td>$valid</td></tr>'; ?>----------------------end of code------------------ Quote Link to comment
bulolski Posted September 15, 2011 Share Posted September 15, 2011 mga master ok na..na solve ko na... echo '<tr><td><a href="family_comp.php?hhid='.urlencode($hhid).'&search=search">'.$hhid.'</a></td></tr>'; Quote Link to comment
West Tres Posted September 17, 2011 Share Posted September 17, 2011 mga bro, sino nka gamit dto ng MS ACCESS (as Fornt end) MySQL (back end database)ano mga pros and cons dto?sa napansin ko ung image dko ma retrieve sa MS ACCESS as front end...tnx Any reason why you want to use Access as the front end? I think you'd be much better off with your own PHP-based web app for that. Quote Link to comment
palalat69 Posted October 1, 2011 Share Posted October 1, 2011 mga bro, sino nka gamit dto ng MS ACCESS (as Fornt end) MySQL (back end database)ano mga pros and cons dto?sa napansin ko ung image dko ma retrieve sa MS ACCESS as front end...tnx I was just wondering kung bakit MySQL ang pinili mo for back end database. I am using MySQL for web-based database programs written in PHP but requires installation of PHP and other server software. Kung single desktop user lang naman, have you tried using MSDE 2000 or yung Microsoft SQL Express as your backend. Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.