- Strength to Increase Rep
- +4
- Strength to Decrease Rep
- -1
- Upvotes Received
- 6
- Posts with Upvotes
- 6
- Upvoting Members
- 6
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Re: personally if it was me i would just have a ajax based search box, the person starts typing their name and it will return their information and auto submit on click event! | |
Re: i found in this sort of situation is to create a session timeout script in a include file that way if even a guest comes onto my site it will run the script to see if any logged in members / visiting guests unix timestamp has expired. example <?php // … | |
Re: i had this problem also so i reconfigured xampp to run on port 8080 so there is no mix up with skype and varous applications that use 80. localhost:8080/ | |
Re: is is a random number generator between 1 - 10 ? | |
hi all i am developing a small application that will allow the user to paste in admin logs which will then be converted into xml data. The code works fine in VB.net but i am trying to convert it into C# as the application is written in c# i am … | |
Good Afternoon everyone. I am currently working on a little side project that aquires player statitical data from a website / XML Feed getting the data is fine and using item.substring(item.indexOf("ABC")) but what i would like to do is call a series of information and show them with in a … | |
Hi all I am currently working on a Battlefield player / server statistics application that i have written in C#. I am storing RAW player / server data in a table at the moment. My question is what is a recommended maximum columns per table as this statistical data which … | |
Re: create a class called class1.cs inside your public partial on both form1 and form 2 add the following class1 myclass = new class1(); then you can pass information to your class by doing class1.size = textbox1.text; inside you class add the following public static string size { get; set; } … | |
Hi all i am obtaining game stats data through c# using HttpWebRequest and am returning chunks of data which is passing through class variabled held in dll files. my question is which i am unsure of is i would like to add a progress bas to show the players current … | |
| Re: until we know what the database structure is like, we really cannot help as "Reverend Jim" has been trying to say, if you have more that 1 client accessing a certain region of the database (Example: teacher - edit student 1 & student views student 1) at the same time … |
Re: i personally use MS Sql Server 2012 with MS Sql Server Manager 2012, really helpful on joins and relationshipping tables. as for speed i have a database with around 30 tables 24 ralationships and a ton of information stored and it returns almost instantly, no noticable delay | |
Re: if your using Microsoft SQL server, to connect to it remotly you will need add the hostip pr pcname:port, collection = database. if you would like to access the server directly you will have to install sql server manager and create alt login account and bind to the database collection … | |
Re: you could set a unique enum field or int field as a default of 0, if the room is in use set as 1 that way if any new data is entered and if room_inuse is equal to 1 then messagebox.show("Im Sorry" + "\r\n" + "Room: " + roomID + … | |
Hi all i have a tiny question I have 5 IBM Blade servers running at my home using 1 external Static IP Address, is there any way i can forward certain ports to the different servers and people outside the network can access that Server instead of using DMZ on … | |
Re: thats pretty easy stuff, its just the basics of C# there should be no problem with you doing this exercise. most assignments are made based of your current learning status in the course that you are attending. | |
Re: more information would be helpful. assuming that you are returning the ID primary key from the table and displaying it either visable or hidden you can do a click event on the selected row in the datagridview (assuming you are using datagridview for population). double click on the datagridview to … | |
Re: so when the button is clicked it sends the results to MSSQL table in your database, assuming its ADO. pass the combobox data to a method public method methodname() { // run your population for your combobox here } on your button_click event add after your SQL INSERT STATEMENT, methodname(); … | |
hi all im having a issue with non selected checkboxes when i select checkboxes and hit submit they go into the database ok but the checkboxes that have not been selected are adding 0 to the database code below: <form action="addeventusers.php?evid=<?php echo $evid; ?>&u=<?php echo $u; ?>" method="post"> user 1 … | |
Hi all i am creating a web application and i would like to generate a md5 checksum on an uploaded file while uploading can i just add md5($file); or is there another way to add a checksum thanks | |
Hi all I have recently watched a tutorial series from PHPACADEMY called the advert rotation script series. I have found a small problem, the problem is that if any of the adverts have expired then the rest will not show. does anyone have any solutions for this issue, that if … | |
Hi all i am a bit stuck lol I am trying to get the file extention from a url say yoursite.com/file.zip in the data base the full link will be there, i am looking for a function that will take the full url take ".zip" and then will output "(file … | |
Hi all I have been developing a Dynamic signature generator on my server and i have selected options that can be dragged and dropped onto a uploaded image using jQuery, I would like my dynamic generator to take a screenshot or somewhow save the designed layout of the sig to … | |
Re: login button / jQuery not loading on Google chrome 17.0.936.79 im having to use opera to login here & avatars dont show on chrome unless logged in also navigation dropdown not working on chrome, was working the other day :d | |
Re: post your code here and we can have a look to see what is not working correctly | |
Re: if you are using likes of XAMPP on your local machine sendig emails will not work unless you have a mail server or setup a php mail server query | |
Hi all I have created a dynamic signatre system for my site and i would like to add the members avatar based off sig.php?username=USERNAME but when i output the file the avatar is massive how can i resize the image from say 100 x 80 to likes of 24 x … | |
Hi all I am writing a points system for a event that is coming up and the client would like results for each member printed on 1 page for each account the results will fit on 1 page for the user how would i go about doing this. i dont … | |
Re: also you can go session_start(); $s_username = $_SESSION['username']; hello <?php echo $s_username; ?> | |
| Re: the simplest way is to pull the users current points from say TABLE users so a row in USERS will be mypoints return mypoints on the submission and do the following $oldpoints = $row['mypoints']; $newpoints = 2; $totalpoints = $oldpoints + $newpoints; this will add 2 points on top of … |
Hi all i am having a small problem with my dynamic output code to produce a signature in php the signature comes out fine with text but when i add another .png image to add ontop of the main signature i get a black background when i would like it … |