Hello i would like to invite all who like to take risks and like to build something new, i'm building a project and i can say its complete about 90% BUT i'm not experienced too much to finish the project by my self, so i need HELP from someone who know better PHP, Bootstrap, CSS and JS. I dont have any money to give from the start so thats why im writing this for those who want to help.. The project is big so if it goes as planned, we all will be happy guarantee.

Thank you and sorry for bad English :)

Dani AI

Generated

A few focused, practical steps that will make it much easier for people here to help and will reduce risk as you finish the build. , you’ve got the UI and plan — good. is right: the next move is to post a small, sanitized reproducible example (PHP version, DB engine, a tiny schema and one test row) and a short list of the exact failures you see. Don’t publish credentials or secrets.

For login + input security: use HTTPS, server-side validation, prepared statements and modern password hashing (don’t roll your own crypto). Example (registration/login basics):

$hash = password_hash($password, PASSWORD_DEFAULT);

$stmt = $pdo->prepare('SELECT id, password_hash FROM users WHERE email = :email');
$stmt->execute([':email'=>$email]);
$user = $stmt->fetch();
if ($user && password_verify($password, $user['password_hash'])) {
    session_regenerate_id(true);
    $_SESSION['user_id'] = $user['id'];
}

Also enforce CSRF tokens, set session cookie flags (HttpOnly, Secure, SameSite), rate-limit login attempts, and escape all output with htmlspecialchars() to prevent XSS.

For SEO-friendly URLs and aggregation: use server routing or a simple rewrite rule to map /post/123/slug to index.php?post_id=123. When aggregating, prefer official RSS/JSON APIs; if you must scrape, confirm terms of service and robots.txt, cache results, store source IDs and last-updated timestamps to fetch deltas, and always attribute the original source to avoid duplicate-content penalties.

For dynamic search: start with a DB fulltext index (MySQL/Percona/MariaDB or Postgres tsvector) for MVP; move to a search engine (Elasticsearch/Algolia) when you need relevance tuning or scale. On the front end debounce input and fetch paged results from a server-side endpoint.

Immediate next steps to attract contributors: push a public repo (no secrets), add a readme with env/version info, include a sanitized SQL dump, and list 3 small, well-defined issues (one per area). That will let volunteers pick short tasks and prove value before you promise pay.

Recommended Answers

All 4 Replies

Member Avatar for Member #120589

Don't give anything away will you?! If you're expecting replies to this post, you may be waiting a while. Give us some info / screenshots. WHat is it supposed to do? Which bits are you struggling with?

THe best way IMO, is for you to ask for help, so we can help YOU do it.

Yeah sorry i didnt mention that, opportunity to work in the future and receiving paychecks every month, i will say again if all go as planned. I have the Marketing and Advertising strategy figured out already i'm building this project about 1 year but with not much knowledge of PHP. I was having a friend to help me with the coding, but he is working now so doesn't have much time to help me also he is from other country.

Member Avatar for Member #120589

Still no info...

Help needed with login/input security, URL's for better SEO, aggregate posts from couple website's and display on mine, and dynamic search.

Here are couple of images what i have done so far...

Shared Page

Home Page

Messages

Account History

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.