- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
22 Posted Topics
Hi, Need help, im stuck here in PHP pagination, though i have made it work but it displays all the nmuber of pages i have. My goal is to have an adjacent so that it would be more clean for the user. here are the fucntion code for my pagination, … | |
Hi, ive been working on a project which in web with php and mysql. My goal is simple user/admin can input two dates then the result of the query will exported in excel. here's my code which i manage to extract the query from database: if(isset($_POST['submit'])){ // $frdate = $_POST['fr-date']; … | |
Re: Can you go to your 000webhost cpanel and look for servername on the right panel.. | |
Hi Guys, I've got a xampp since day one, as i used this for local development, strangely happen yesterday when i started it, i cant view my localhost even the phpmyadmin though the xampp is up and running and the most annoying part is when i open my browsers (GC, … | |
Hi, Im working on project right now in webdevelopment. im trying to view a PDF file in a browser which is the filepath was stored in database and the actual file save was in folder inside my webfolder and could retrieve/view by its ID. here's some of my code <?php … | |
Hi Php'ers, I'm new to Php. I have some issues INSERTING date to MySQL by PHP. here's my code snippet: //date format $date1 = mysqli_real_escape_string($_POST['j_avail']); $d1 = date('Y-m-d',($date1)); $date2 = mysqli_real_escape_string($_POST['j_expir']); $d2 = date('Y-m-d',($date2)); the query: $sql = "INSERT INTO table (....,j_avail,j_expir) VALUES (....,'$d1','$d2')"; the HTML: <td id="ititle">Availability :</td> <td><input … | |
Hi Guys, Im currently working with application, where it will automatically inform the user that there is an overdue account today. i decided to compare the current date(today) to stored date in mysql database, heres my code: Public Sub getReminder() Dim _con1 As New MySqlConnection Dim _cmd1 As New MySqlCommand … | |
Re: go to your Project>properties>Application then see if it is pointing to your Form. | |
Im new to PHP, i just want to know if theres any rule in php in terms of single statement multiple lines. for example in VB.Net we uses "&_"(w/o the quote) to tell vb.net that it is a single statment and it has a continuation. is there any in php? … | |
Re: You can do a lot of things with Cyrstal Reporting but first you must have to familiarized the Crystal Report data connection as for me its a little bit tricky. | |
Hi its me again =), See the code below: <style> td{ width:150px; } </style> . . . echo'<table> <tr> <td>TITLE</td> </tr> </table> . . . Im trying to style the <td> width in css but php doesnt recognize it. I've also tried this <td style="width:150px">TITLE</td>. Do you have any idea … | |
Hi guys, Need help for this, i'm developing an application and here's what im trying to do: -I have a search box where i can type and search for a data(With DataGridView). then after i searched & found that data when click it on DataGriView as highlighted, data will be … | |
Re: As i can see here, you are directly adding/editing on your datagridview, right?, are you using Access, MySQL or SQL? | |
Re: Its doable Mr.M, better do it in php or asp.net if you want to share database through internet. correct me if im wrong, based on the above title you want to use Access Database?, if so better read this first: http://databases.aspfaq.com/database/what-are-the-limitations-of-ms-access.html | |
Re: Add Timer, then call this code. hope this help. Public Sub loadRefresh() '///Auto reloading the data Dim dt As New DataTable Dim ds As New DataSet ds.Tables.Add(dt) Dim da As New MySqlDataAdapter("SELECT *FROM <table> ", conn) da.Fill(dt) dg_view1.DataSource = dt.DefaultView End Sub | |
Re: Use CrystalReport Wizard, there you can find the proper way.. | |
Re: Are you trying to fetch the data directly from datagridview then send it to SQL? | |
Re: You could try this: cmd.Connection = con cmd.CommandType = CommandType.Text cmd.CommandText = "insert into Accessonbook-1 (ID,..)VALUES(@IdNum,..)" .parameter.addwithvalue("@IdNum", IDtxt.Text).value.Tostrinf() .ExecuteNonQuery | |
Re: On CrystalReportViewer go to: Field Explorer>Database Expert> on Data Tab you have Project Data, My Connections, Create New Connections.. then click My Connections, there you can your datasets.. Go and Explore Its a simple LogOn/LogOff Problem | |
Re: Assign IP address to each computer for easy connectivity. Then use Telnet to see if PC's are communicating. | |
Re: Back to your CrystalReportViewer see if value for image is set. |
The End.